CI: Remove GCC 11 to fix Ubuntu 18.04 builds (#156)

Required due to issue in GHA virtual environment
https://github.com/actions/virtual-environments/issues/3376
This commit is contained in:
Eric Kilmer 2021-05-16 00:30:38 -04:00 committed by GitHub
parent 9703662af5
commit b2d0981f2e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -44,6 +44,11 @@ jobs:
- uses: actions/checkout@v2
with:
submodules: 'true'
# https://github.com/actions/virtual-environments/issues/3376
- name: Workaround GHA Issue with GCC 11
if: matrix.compiler.CC == 'clang' && matrix.platform == 'ubuntu-18.04'
run: |
sudo apt remove libgcc-11-dev gcc-11
- name: Enable ASan+UBSan Sanitizers
if: matrix.build-type == 'Debug'
run: |