Skip to content

Commit

Permalink
fix(ci): Fixed gcc paths in macos jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
mfep committed May 23, 2024
1 parent a3edbe8 commit aa5c79c
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/presubmit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -730,33 +730,33 @@ jobs:
COMPILER:
- CC: /usr/bin/clang
CXX: /usr/bin/clang++
- CC: /usr/local/bin/gcc-11
CXX: /usr/local/bin/g++-11
- CC: /usr/local/bin/gcc-13
CXX: /usr/local/bin/g++-13
- CC: gcc-11
CXX: g++-11
- CC: gcc-13
CXX: g++-13
GEN:
- Xcode
- Ninja Multi-Config
DEPS: [system, vcpkg, fetch]
exclude:
# These entries are excluded, since XCode selects its own compiler
- COMPILER:
CC: /usr/local/bin/gcc-11
CXX: /usr/local/bin/g++-11
CC: gcc-11
CXX: g++-11
GEN: Xcode
- COMPILER:
CC: /usr/local/bin/gcc-13
CXX: /usr/local/bin/g++-13
CC: gcc-13
CXX: g++-13
GEN: Xcode
# These entries are excluded, since the GNU C++ binaries are not compatible
# with the ones pulled from Homebrew
- COMPILER:
CC: /usr/local/bin/gcc-11
CXX: /usr/local/bin/g++-11
CC: gcc-11
CXX: g++-11
DEPS: system
- COMPILER:
CC: /usr/local/bin/gcc-13
CXX: /usr/local/bin/g++-13
CC: gcc-13
CXX: g++-13
DEPS: system
env:
CC: ${{matrix.COMPILER.CC}}
Expand Down

0 comments on commit aa5c79c

Please sign in to comment.