From 8418d4a7db58e463c301d6e0bd53627d50c443c6 Mon Sep 17 00:00:00 2001 From: Kamron Batman <3953314+kamronbatman@users.noreply.github.com> Date: Sun, 16 May 2021 01:14:09 -0700 Subject: [PATCH] fix(builds): Adds Fedora for build testing (#605) - [X] Removes CentOS 8 docker image - [X] Adds Fedora 32/33 --- Directory.Build.props | 2 +- azure-pipelines.yml | 8 +++++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/Directory.Build.props b/Directory.Build.props index 7ba648054..2dbfd4c03 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -54,7 +54,7 @@ latest - + all runtime; build; native; contentfiles; analyzers; buildtransitive diff --git a/azure-pipelines.yml b/azure-pipelines.yml index fb871d631..df3397068 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -29,7 +29,7 @@ jobs: strategy: matrix: 'CentOS 8': - containerImage: modernuo/centos-net5:8 + containerImage: centos:8 os: centos.8 'CentOS 7': containerImage: centos:7 @@ -43,6 +43,12 @@ jobs: 'Ubuntu 20': containerImage: mcr.microsoft.com/dotnet/sdk:5.0-focal os: ubuntu.20.04 + 'Fedora 32': + containerImage: fedora:32 + os: fedora.32 + 'Fedora 33': + containerImage: fedora:33 + os: fedora.33 displayName: Linux