Skip to content

Commit 9d9757b

Browse files
robUx4jbkempf
authored andcommitted
CI: switch macos-13 to macos-15-intel
macos-13 is not available anymore. It was an Intel image [^1]. macos-13-xlarge being the arm64 one. The oldest Intel image currently available is macos-14-large. However the "-large" images seem to not be available unlimited for free. We need to use macos-15-intel to free image targeting macOS Intel [^2]. Any macOS runner should be able to compile the code for both and probably run tests for both architectures as well. [^1]: actions/runner-images@e664a5c [^2]: https://github.com/actions/runner-images/blob/c218bde724e0ae9730d9ce101bca654a4c2e521d/README.md
1 parent 3380e33 commit 9d9757b

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/cmake-multi-platform.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717

1818
# To add more build types (Release, Debug, RelWithDebInfo, etc.) customize the build_type list.
1919
matrix:
20-
os: [ubuntu-latest, windows-latest, macos-13, macos-latest]
20+
os: [ubuntu-latest, windows-latest, macos-15-intel, macos-latest]
2121
build_type: [Release]
2222
cpp_compiler: [g++, clang++, cl]
2323
include:
@@ -30,7 +30,7 @@ jobs:
3030
- os: ubuntu-latest
3131
c_compiler: clang
3232
cpp_compiler: clang++
33-
- os: macos-13
33+
- os: macos-15-intel
3434
c_compiler: clang
3535
cpp_compiler: clang++
3636
- os: macos-latest
@@ -43,9 +43,9 @@ jobs:
4343
cpp_compiler: clang++
4444
- os: ubuntu-latest
4545
cpp_compiler: cl
46-
- os: macos-13
46+
- os: macos-15-intel
4747
cpp_compiler: cl
48-
- os: macos-13
48+
- os: macos-15-intel
4949
cpp_compiler: g++
5050
- os: macos-latest
5151
cpp_compiler: cl

.github/workflows/meson-multi-platform.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717

1818
# To add more build types (Release, Debug, RelWithDebInfo, etc.) customize the build_type list.
1919
matrix:
20-
os: [ubuntu-latest, windows-latest, macos-13, macos-latest]
20+
os: [ubuntu-latest, windows-latest, macos-15-intel, macos-latest]
2121
build_type: [Release]
2222
cpp_compiler: [g++, clang++, cl]
2323
meson_version: ["1.2.0"]
@@ -31,7 +31,7 @@ jobs:
3131
- os: ubuntu-latest
3232
c_compiler: clang
3333
cpp_compiler: clang++
34-
- os: macos-13
34+
- os: macos-15-intel
3535
c_compiler: clang
3636
cpp_compiler: clang++
3737
- os: macos-latest
@@ -44,9 +44,9 @@ jobs:
4444
cpp_compiler: clang++
4545
- os: ubuntu-latest
4646
cpp_compiler: cl
47-
- os: macos-13
47+
- os: macos-15-intel
4848
cpp_compiler: cl
49-
- os: macos-13
49+
- os: macos-15-intel
5050
cpp_compiler: g++
5151
- os: macos-latest
5252
cpp_compiler: cl

0 commit comments

Comments
 (0)