From 0b91b9afd4424f9422b4a174689bc704fcb7eb54 Mon Sep 17 00:00:00 2001 From: Daniel Ju <41210545+daniel-ju@users.noreply.github.com> Date: Thu, 20 May 2021 20:21:12 -0400 Subject: [PATCH] Port work-around for Ubuntu 18.04 Azure CI built bot breaking builds (#103) --- build/azure-pipelines.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/build/azure-pipelines.yml b/build/azure-pipelines.yml index 650e94f69b7..9466504c3a9 100644 --- a/build/azure-pipelines.yml +++ b/build/azure-pipelines.yml @@ -11,6 +11,11 @@ jobs: - checkout: self lfs: true fetchDepth: 1 + # This is to work-around issue: https://github.com/actions/virtual-environments/issues/3376 + # Once the Ubuntu 18.04 build bot image is fixed, we can remove this work-around. + - script: | + sudo apt remove libgcc-11-dev gcc-11 + displayName: Remove GCC 11 (work-around) - task: PowerShell@2 displayName: 'Set ICU Version' inputs: @@ -111,6 +116,11 @@ jobs: - checkout: self lfs: true fetchDepth: 1 + # This is to work-around issue: https://github.com/actions/virtual-environments/issues/3376 + # Once the Ubuntu 18.04 build bot image is fixed, we can remove this work-around. + - script: | + sudo apt remove libgcc-11-dev gcc-11 + displayName: Remove GCC 11 (work-around) - task: PowerShell@2 displayName: 'Set ICU Version' inputs: