Skip to content

Commit

Permalink
ci: replace macos-11 workflows with newer ones
Browse files Browse the repository at this point in the history
GitHub Actions does not support `macos-11` anymore - let's replace
it with the newer versions.
  • Loading branch information
drewdzzz committed Oct 14, 2024
1 parent e9f8330 commit ffd5243
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,9 @@ jobs:
runs-on:
- ubuntu-20.04
- ubuntu-22.04
- macos-11
- macos-12
- macos-13
- macos-14
build-type:
- Debug
- RelWithDebInfo
Expand All @@ -36,8 +37,9 @@ jobs:
runs-on:
- ubuntu-20.04
- ubuntu-22.04
- macos-11
- macos-12
- macos-13
- macos-14
compiler:
- {c: gcc, cxx: g++}
- {c: clang, cxx: clang++}
Expand All @@ -52,10 +54,12 @@ jobs:
- cxx-standard: 17
compiler: {c: gcc, cxx: g++}
# gcc on macos is just an alias for clang
- runs-on: macos-11
compiler: {c: gcc, cxx: g++}
- runs-on: macos-12
compiler: {c: gcc, cxx: g++}
- runs-on: macos-13
compiler: {c: gcc, cxx: g++}
- runs-on: macos-14
compiler: {c: gcc, cxx: g++}
name: build (${{ matrix.runs-on }}, ${{ matrix.build-type }}, ${{ matrix.compiler.c }}, C++${{ matrix.cxx-standard }})
with:
build-only: true
Expand Down

0 comments on commit ffd5243

Please sign in to comment.