From a0ee00b64b6dc4e0593c9b06a8ee5b279a6a6512 Mon Sep 17 00:00:00 2001 From: Davis Goodin Date: Wed, 23 Jan 2019 16:27:11 -0600 Subject: [PATCH] Remove FreeBSD temporarily: unblock official build (dotnet/core-setup#5035) The FreeBSD agent is currently not available. Commit migrated from https://github.com/dotnet/core-setup/commit/1cff68c625cda62b72652852c25b0999ecfeb984 --- eng/jobs/finalize-publish.yml | 4 ++-- eng/pipelines/installer/azure-pipelines.yml | 18 +++++++++--------- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/eng/jobs/finalize-publish.yml b/eng/jobs/finalize-publish.yml index daed8e4..fffa94b 100644 --- a/eng/jobs/finalize-publish.yml +++ b/eng/jobs/finalize-publish.yml @@ -5,7 +5,7 @@ jobs: displayName: Finalize_Publish # Run only if all build legs succeeded condition: and( - succeeded('Build_FreeBSD_x64'), + # succeeded('Build_FreeBSD_x64'), succeeded('Build_Linux_Arm'), succeeded('Build_Linux_Arm64'), succeeded('Build_Linux_x64_Alpine36'), @@ -19,7 +19,7 @@ jobs: ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest')) # Run after all dependent legs are executed dependsOn: - - Build_FreeBSD_x64 + # - Build_FreeBSD_x64 - Build_Linux_Arm - Build_Linux_Arm64 - Build_Linux_x64_Alpine36 diff --git a/eng/pipelines/installer/azure-pipelines.yml b/eng/pipelines/installer/azure-pipelines.yml index 2f3069b..e0ff856 100644 --- a/eng/pipelines/installer/azure-pipelines.yml +++ b/eng/pipelines/installer/azure-pipelines.yml @@ -80,15 +80,15 @@ jobs: ################################################################################ # Build Bash legs (Linux and FreeBSD) ################################################################################ -- ${{ if ne(variables['System.TeamProject'], 'public') }}: - - template: /eng/jobs/bash-build.yml - parameters: - displayName: Build_FreeBSD_x64 - disableCrossgen: true - osGroup: FreeBSD - portableBuild: true - skipTests: true - targetArchitecture: x64 +# - ${{ if ne(variables['System.TeamProject'], 'public') }}: +# - template: /eng/jobs/bash-build.yml +# parameters: +# displayName: Build_FreeBSD_x64 +# disableCrossgen: true +# osGroup: FreeBSD +# portableBuild: true +# skipTests: true +# targetArchitecture: x64 - template: /eng/jobs/bash-build.yml parameters: -- 2.7.4