Skip to content

Commit 0b9f7ee

Browse files
authored
chore: update github ci tools to ubuntu 22.04 (#965)
* chore: update github ci tools to ubuntu 22.04
1 parent ed023da commit 0b9f7ee

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,16 @@ on:
1111
jobs:
1212
linux-min:
1313
name: Linux Min Config
14-
runs-on: ubuntu-20.04
14+
runs-on: ubuntu-22.04
1515
strategy:
1616
matrix:
17-
compiler: [clang++-6.0, g++-10]
17+
compiler: [clang++-15, g++-12]
1818
steps:
1919
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
2020
- name: Install Dependencies
2121
# Boost must be installed only because the CMake version (3.12) can't
2222
# detect the installed Boost version (1.69)
23-
run: sudo apt-get update && sudo apt-get -y install ninja-build libboost-date-time-dev clang-6.0 g++-10 g++-multilib
23+
run: sudo apt-get update && sudo apt-get -y install ninja-build libboost-date-time-dev g++-multilib
2424
- name: Run tests with common Catch
2525
run: |
2626
cmake -G Ninja .
@@ -32,7 +32,7 @@ jobs:
3232
linux-latest:
3333
name: Linux Latest Config
3434
needs: [linux-min]
35-
runs-on: ubuntu-22.04
35+
runs-on: ubuntu-24.04
3636
strategy:
3737
matrix:
3838
compiler: [clang++, g++]

0 commit comments

Comments
 (0)