Skip to content

Commit

Permalink
Updated github workflows to use more recent machines and compilers.
Browse files Browse the repository at this point in the history
  • Loading branch information
Sedeniono committed Mar 29, 2024
1 parent 4f5d571 commit f788370
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test_clang_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ jobs:
strategy:
fail-fast: false
matrix:
clang_version: [11, 12]
clang_version: [13, 15]
cpp_version: [c++17, c++20]
stdlib: [libc++, libstdc++] # llvm library and gcc library
arch: [m64, m32] # 64 and 32 bit
buildmode: [~ , -O3 -DNDEBUG, -O3 -DNDEBUG -ffast-math]

runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
timeout-minutes: 10

steps:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/test_clang_win.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ jobs:
strategy:
fail-fast: false
matrix:
clang_version: [16, 17]
cpp_version: [c++17, c++20]
buildmode: [~ , -O3 -DNDEBUG, -O3 -DNDEBUG -ffast-math]

Expand All @@ -28,7 +29,7 @@ jobs:
- name: Install clang
uses: KyleMayes/install-llvm-action@v1.9.0
with:
version: "16"
version: ${{ matrix.clang_version }}
- name: Build and run tests
working-directory: ${{env.TEST_DIR}}
env:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test_gcc_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
strategy:
fail-fast: false
matrix:
gcc_version: [9, 10]
gcc_version: [9, 11, 13]
cpp_version: [c++17, c++20]
arch: [m64, m32] # 64 and 32 bit
buildmode: [~ , -O3 -DNDEBUG, -O3 -DNDEBUG -ffast-math]
Expand All @@ -27,7 +27,7 @@ jobs:
- gcc_version: 9
cpp_version: c++20

runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
timeout-minutes: 10

steps:
Expand Down

0 comments on commit f788370

Please sign in to comment.