Skip to content

Commit f15e8e9

Browse files
committed
ci: replace macos-11 workflows with newer ones
GitHub Actions does not support `macos-11` anymore - let's replace it with the newer versions.
1 parent 5183460 commit f15e8e9

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

.github/workflows/testing.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,9 @@ jobs:
1616
runs-on:
1717
- ubuntu-20.04
1818
- ubuntu-22.04
19-
- macos-11
2019
- macos-12
20+
- macos-13
21+
- macos-14
2122
build-type:
2223
- Debug
2324
- RelWithDebInfo
@@ -36,8 +37,9 @@ jobs:
3637
runs-on:
3738
- ubuntu-20.04
3839
- ubuntu-22.04
39-
- macos-11
4040
- macos-12
41+
- macos-13
42+
- macos-14
4143
compiler:
4244
- {c: gcc, cxx: g++}
4345
- {c: clang, cxx: clang++}
@@ -52,10 +54,12 @@ jobs:
5254
- cxx-standard: 17
5355
compiler: {c: gcc, cxx: g++}
5456
# gcc on macos is just an alias for clang
55-
- runs-on: macos-11
56-
compiler: {c: gcc, cxx: g++}
5757
- runs-on: macos-12
5858
compiler: {c: gcc, cxx: g++}
59+
- runs-on: macos-13
60+
compiler: {c: gcc, cxx: g++}
61+
- runs-on: macos-14
62+
compiler: {c: gcc, cxx: g++}
5963
name: build (${{ matrix.runs-on }}, ${{ matrix.build-type }}, ${{ matrix.compiler.c }}, C++${{ matrix.cxx-standard }})
6064
with:
6165
build-only: true

0 commit comments

Comments
 (0)