Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Specify version suffix for GCC. #939

Merged
merged 1 commit into from
Mar 4, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/actions/set-up/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ inputs:
required: false
default: >-
${{
runner.os == 'Linux' && 'gcc'
runner.os == 'Linux' && 'gcc-14'
|| (runner.os == 'macOS' && 'clang' || 'msvc')
}}

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/bazel-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
# allow Bazel to cache intermediate results between the test runs.
bazel: [7.2.1, 7.5.0, 8.1.1, latest]
os: [ubuntu-latest, macos-latest, windows-latest]
cc: [gcc, clang, msvc]
cc: [gcc-14, clang, msvc]
exclude:
# Visual C++ works only on Windows. Windows doesn’t use the CC
# environment variable and always uses Visual C++ by default.
Expand All @@ -40,10 +40,10 @@ jobs:
- os: macos-latest
cc: msvc
- os: windows-latest
cc: gcc
cc: gcc-14
# Exclude non-default compilers for now. We should add them later.
- os: macos-latest
cc: gcc
cc: gcc-14
fail-fast: false
runs-on: ${{matrix.os}}
steps:
Expand Down
Loading