File tree Expand file tree Collapse file tree 1 file changed +10
-4
lines changed
Expand file tree Collapse file tree 1 file changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -47,12 +47,18 @@ jobs:
4747 strategy :
4848 fail-fast : false
4949 matrix :
50- version : [11, 12]
50+ include :
51+ - version : 11
52+ os : ' ubuntu-22.04'
53+ - version : 12
54+ os : ' ubuntu-22.04'
55+ - version : 17
56+ os : ' ubuntu-24.04'
5157
52- runs-on : ubuntu-latest
58+ runs-on : ${{ matrix.os }}
5359
5460 steps :
55- - uses : actions/checkout@v3
61+ - uses : actions/checkout@v4
5662
5763 - name : Install Clang ${{ matrix.version }}
5864 run : sudo apt-get install -y clang-${{ matrix.version }}
6167 env :
6268 CXX : clang-${{ matrix.version }}
6369 run : cmake -S . -B build
64- -D CMAKE_CXX_COMPILER=clang++
70+ -D CMAKE_CXX_COMPILER=clang++-${{ matrix.version }}
6571 -D CMAKE_BUILD_TYPE:STRING=Release
6672 -D ${{ env.PROJECT }}_OPT_SELECT_NONSTD=ON
6773 -D ${{ env.PROJECT }}_OPT_BUILD_TESTS=ON
You can’t perform that action at this time.
0 commit comments