Skip to content

Commit d7e0c97

Browse files
authored
Fix for Intel wheels (#290)
1 parent 36b15c0 commit d7e0c97

File tree

2 files changed

+10
-8
lines changed

2 files changed

+10
-8
lines changed

.github/workflows/create_wheel.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
- os: macos-intel
4141
runs-on: macos-15-intel # x86_64 runner
4242
xcode: latest-stable
43-
deploy_target: 14.0
43+
deploy_target: 15.0
4444
- os: macos-arm
4545
runs-on: macos-14 # macos-14+ (including latest) are ARM64 runners
4646
xcode: latest-stable
@@ -163,20 +163,20 @@ jobs:
163163
fail-fast: false
164164
matrix:
165165
distro:
166-
- {name: "XCode 14.3, Intel",
167-
os: macos-intel,
168-
distro: "macos-13",
169-
xcode: "14.3"
170-
}
171166
- {name: "XCode 15.4, ARM",
172167
os: macos-arm,
173168
distro: "macos-14",
174169
xcode: "15.4"
175170
}
176-
- {name: "XCode 16.3, ARM",
171+
- {name: "XCode Latest, ARM",
177172
os: macos-arm,
178173
distro: "macos-15",
179-
xcode: "16.3"
174+
xcode: "latest-stable"
175+
}
176+
- {name: "XCode Latest, Intel",
177+
os: macos-intel,
178+
distro: "macos-15-intel",
179+
xcode: "latest-stable"
180180
}
181181
steps:
182182
- uses: maxim-lobanov/setup-xcode@v1

doc/checklist_new_release.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ The following steps should be performed when releasing a new stormpy version.
55
To manually update the Storm version:
66
* change `STORM_MIN_VERSION` in `CMakeLists.txt`
77
* change `STORM_GIT_TAG` in `pyproject.toml`
8+
Note that the CI test use the Docker `storm:ci` images which are only updated once per day.
9+
The CI fails if the new Storm version is not yet present in these CI Docker images.
810

911
2. Check that the stormpy [CI](https://github.com/moves-rwth/stormpy/actions/) builds without errors and all tests are successful.
1012

0 commit comments

Comments
 (0)