Skip to content

Commit a97eccc

Browse files
authored
Migrate to newer Mac runners (#285)
1 parent 3d3dd22 commit a97eccc

File tree

2 files changed

+15
-15
lines changed

2 files changed

+15
-15
lines changed

.github/workflows/buildtest.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -171,34 +171,34 @@ jobs:
171171
strategy:
172172
matrix:
173173
config:
174-
- {name: "XCode 14.3, Intel, Debug",
175-
distro: "macos-13",
176-
xcode: "14.3",
177-
build_type: "Debug",
178-
setup_args: "--config-settings=cmake.define.ALLOW_STORM_SYSTEM=OFF --config-settings=cmake.define.STORM_GIT_TAG=master",
179-
optional_libs: "[test,plot]"
180-
}
181174
- {name: "XCode 15.4, ARM, Debug",
182175
distro: "macos-14",
183176
xcode: "15.4",
184177
build_type: "Debug",
185178
setup_args: "--config-settings=cmake.define.ALLOW_STORM_SYSTEM=OFF --config-settings=cmake.define.STORM_GIT_TAG=master",
186179
optional_libs: "[test,plot]"
187180
}
188-
- {name: "XCode 16.3, ARM, Debug",
181+
- {name: "XCode Latest, ARM, Debug",
189182
distro: "macos-15",
190-
xcode: "16.3",
183+
xcode: "latest-stable",
191184
build_type: "Debug",
192185
setup_args: "--config-settings=cmake.define.ALLOW_STORM_SYSTEM=OFF --config-settings=cmake.define.STORM_GIT_TAG=master",
193186
optional_libs: "[test,plot]"
194187
}
195-
- {name: "XCode 16.3, ARM, Release",
188+
- {name: "XCode Latest, ARM, Release",
196189
distro: "macos-15",
197-
xcode: "16.3",
190+
xcode: "latest-stable",
198191
build_type: "Release",
199192
setup_args: "--config-settings=cmake.define.ALLOW_STORM_SYSTEM=OFF --config-settings=cmake.define.STORM_GIT_TAG=master",
200193
optional_libs: "[test,plot]"
201194
}
195+
- {name: "XCode Latest, Intel, Debug",
196+
distro: "macos-15-intel",
197+
xcode: "latest-stable",
198+
build_type: "Debug",
199+
setup_args: "--config-settings=cmake.define.ALLOW_STORM_SYSTEM=OFF --config-settings=cmake.define.STORM_GIT_TAG=master",
200+
optional_libs: "[test,plot]"
201+
}
202202
runs-on: ${{ matrix.config.distro }}
203203
steps:
204204
- uses: maxim-lobanov/setup-xcode@v1

.github/workflows/create_wheel.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,12 @@ jobs:
3838
runs-on: ubuntu-24.04-arm
3939
archs: aarch64
4040
- os: macos-intel
41-
runs-on: macos-13 # macos-13 was the last x86_64 runner
42-
xcode: 14.3
43-
deploy_target: 13.0
41+
runs-on: macos-15-intel # x86_64 runner
42+
xcode: latest-stable
43+
deploy_target: 14.0
4444
- os: macos-arm
4545
runs-on: macos-14 # macos-14+ (including latest) are ARM64 runners
46-
xcode: 15.3
46+
xcode: latest-stable
4747
deploy_target: 14.0
4848
fail-fast: false
4949
steps:

0 commit comments

Comments
 (0)