Skip to content

Commit

Permalink
👷 Updated compilers on GitHub Actions to match latest runner versions (
Browse files Browse the repository at this point in the history
…#166)

* 👷 Update toolchains on macOS CIs

* 👷 Update toolchains on Ubuntu CIs
  • Loading branch information
marcelwa committed Mar 28, 2023
1 parent a2749e9 commit 81e0781
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 14 deletions.
17 changes: 6 additions & 11 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,27 +33,22 @@ jobs:
strategy:
matrix:
os: [ macos-11, macos-12 ]
compiler: [ g++-11, clang++ ]
compiler: [ g++-11, g++-12, clang++ ]
build_type: [ Debug, Release ]
include:
- compiler: clang++
ccompiler: clang
- compiler: g++-11
ccompiler: gcc
- os: macos-11
compiler: g++-9
build_type: Debug
- os: macos-11
compiler: g++-9
build_type: Release
ccompiler: gcc
ccompiler: gcc-11
- compiler: g++-12
ccompiler: gcc-12
- os: macos-11
compiler: g++-10
ccompiler: gcc
ccompiler: gcc-10
build_type: Debug
- os: macos-11
compiler: g++-10
ccompiler: gcc
ccompiler: gcc-10
build_type: Release

name: ${{matrix.os}} with ${{matrix.compiler}} (${{matrix.build_type}} mode)
Expand Down
12 changes: 9 additions & 3 deletions .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,19 +33,25 @@ jobs:
strategy:
matrix:
os: [ ubuntu-20.04, ubuntu-22.04 ]
compiler: [ g++-9, g++-10, clang++-10, clang++-11, clang++-12 ]
compiler: [ g++-10, g++-11, g++-12, clang++-10, clang++-11, clang++-12 ]
build_type: [ Debug, Release ]
exclude:
- os: ubuntu-20.04
compiler: g++-12
- os: ubuntu-22.04
compiler: clang++-10
include:
- os: ubuntu-22.04
compiler: clang++-13
- os: ubuntu-22.04
compiler: clang++-14
- os: ubuntu-22.04
compiler: clang++-15
- os: ubuntu-20.04
compiler: g++-10
build_type: Release
cppstandard: -DFICTION_CXX_STANDARD=20
cppname: C++20
- os: ubuntu-22.04
compiler: g++-11

name: ${{matrix.os}} with ${{matrix.compiler}} (${{matrix.build_type}} mode) ${{matrix.cppname}}
runs-on: ${{matrix.os}}
Expand Down

0 comments on commit 81e0781

Please sign in to comment.