Skip to content

Commit c2001ed

Browse files
CI: use ubuntu 22.04 with GCC 12 and Clang 14
1 parent f33f80a commit c2001ed

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/cmake.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ jobs:
1919
strategy:
2020
matrix:
2121
include:
22-
- os: ubuntu-latest
23-
set_compiler: -DCMAKE_CXX_COMPILER=g++-10
22+
- os: ubuntu-22.04
23+
set_compiler: -DCMAKE_CXX_COMPILER=g++-12
2424

25-
- os: ubuntu-latest
26-
set_compiler: -DCMAKE_CXX_COMPILER=clang++-12
25+
- os: ubuntu-22.04
26+
set_compiler: -DCMAKE_CXX_COMPILER=clang++-14
2727

2828
- os: windows-latest
2929

@@ -33,9 +33,9 @@ jobs:
3333
- uses: actions/checkout@v2
3434

3535
- name: Install compilers
36-
if: matrix.os == 'ubuntu-latest'
36+
if: matrix.os == 'ubuntu-22.04'
3737
run: |
38-
sudo apt install gcc-10 g++-10 clang-12 libc++-12-dev libc++abi-12-dev
38+
sudo apt install gcc-12 g++-12
3939
4040
- name: Configure CMake
4141
run: cmake CMakeLists.txt -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -Dcrhandle_build_tests=ON ${{ matrix.set_compiler }}

0 commit comments

Comments
 (0)