ICU-21615 Work-around Azure CI build bot issue on Ubuntu 18.04

This commit is contained in:
Jeff Genovy 2021-05-14 16:28:39 -07:00
parent 4b6e6e1bc9
commit aef3eb3910

View file

@ -90,6 +90,11 @@ jobs:
- checkout: self
lfs: true
fetchDepth: 10
# 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)
- script: |
export CXXFLAGS="-std=c++14 -Winvalid-constexpr" && cd icu4c/source && ./runConfigureICU --enable-debug --disable-release Linux && make -j2 check
displayName: 'Build and Test C++14'