It's actually clang 7 not gcc 7 that we need to disable on CI, and we only need to disable it on macos. Linux can still run it.

This commit is contained in:
Sebastian Messmer 2022-10-11 21:03:10 -07:00
parent cbb47f5ded
commit 33e205f642
1 changed files with 2 additions and 8 deletions

View File

@ -79,15 +79,9 @@ jobs:
run_tests: [true]
run_clang_tidy: [false]
exclude:
# Apple CI machines cannot install GCC 7 via homebrew anymore
# Apple CI machines cannot install LLVM 7 via homebrew anymore
- os: macos-10.15
compiler:
cxx: g++-7
cc: gcc-7
macos_cxx: g++-7
macos_cc: gcc-7
homebrew_package: gcc@7
apt_package: g++-7
compiler: {cxx: clang++-7, cc: clang-7, macos_cxx: /usr/local/opt/llvm@7/bin/clang++, macos_cc: /usr/local/opt/llvm@7/bin/clang, apt_package: clang-7, homebrew_package: llvm@7}
include:
- name: Local dependencies
os: ubuntu-18.04