Skip to content

Commit

Permalink
fix: CI
Browse files Browse the repository at this point in the history
Signed-off-by: Dmitriy Khaustov aka xDimon <[email protected]>
  • Loading branch information
xDimon committed Feb 6, 2024
1 parent dd8d31f commit cf9afa6
Showing 1 changed file with 13 additions and 7 deletions.
20 changes: 13 additions & 7 deletions .github/workflows/compilers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,18 @@ jobs:
matrix:
os: [ubuntu-latest, macOS-latest]
compiler: [{
"cc": "gcc",
"cxx": "g++"
"cc": "gcc-9",
"cxx": "g++-9"
}, {
"cc": "clang",
"cxx": "clang++"
}]
"cc": "gcc-13",
"cxx": "g++-13"
}, {
"cc": "clang-15",
"cxx": "clang++-15"
}, {
"cc": "clang-17",
"cxx": "clang++-17"
}]
exclude:
- os: macOS-latest
compiler:
Expand Down Expand Up @@ -58,8 +64,8 @@ jobs:
- name: cmake
env:
# CC: ${{ matrix.compiler.cc }}
# CXX: ${{ matrix.compiler.cxx }}
CC: ${{ matrix.compiler.cc }}
CXX: ${{ matrix.compiler.cxx }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # has to be included to access other secrets
GITHUB_HUNTER_USERNAME: ${{ secrets.GITHUB_HUNTER_USERNAME }}
GITHUB_HUNTER_TOKEN: ${{ secrets.GITHUB_HUNTER_TOKEN }}
Expand Down

0 comments on commit cf9afa6

Please sign in to comment.