Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

👷 Updated compilers on GitHub Actions to match latest runner versions #166

Merged
merged 3 commits into from
Mar 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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