Skip to content

Commit 2862c77

Browse files
authored
Remove macos wheels from CI (#19263)
Follows #19225 and stops building macos wheels in CI. ### Pull Request Checklist <!-- Please read https://element-hq.github.io/synapse/latest/development/contributing_guide.html before submitting your pull request --> * [X] Pull request is based on the develop branch * [X] Pull request includes a [changelog file](https://element-hq.github.io/synapse/latest/development/contributing_guide.html#changelog). The entry should: - Be a short description of your change which makes sense to users. "Fixed a bug that prevented receiving messages from other servers." instead of "Moved X method from `EventStore` to `EventWorkerStore`.". - Use markdown where necessary, mostly for `code blocks`. - End with either a period (.) or an exclamation mark (!). - Start with a capital letter. - Feel free to credit yourself, by adding a sentence "Contributed by @github_username." or "Contributed by [Your Name]." to the end of the entry. * [X] [Code style](https://element-hq.github.io/synapse/latest/code_style.html) is correct (run the [linters](https://element-hq.github.io/synapse/latest/development/contributing_guide.html#run-the-linters))
1 parent 022e56c commit 2862c77

File tree

3 files changed

+1
-11
lines changed

3 files changed

+1
-11
lines changed

.github/workflows/release-artifacts.yml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -114,19 +114,12 @@ jobs:
114114
os:
115115
- ubuntu-24.04
116116
- ubuntu-24.04-arm
117-
- macos-14 # This uses arm64
118-
- macos-15-intel # This uses x86-64
119117
# is_pr is a flag used to exclude certain jobs from the matrix on PRs.
120118
# It is not read by the rest of the workflow.
121119
is_pr:
122120
- ${{ startsWith(github.ref, 'refs/pull/') }}
123121

124122
exclude:
125-
# Don't build macos wheels on PR CI.
126-
- is_pr: true
127-
os: "macos-15-intel"
128-
- is_pr: true
129-
os: "macos-14"
130123
# Don't build aarch64 wheels on PR CI.
131124
- is_pr: true
132125
os: "ubuntu-24.04-arm"

changelog.d/19263.misc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Stop building macos wheels in CI pipeline.

pyproject.toml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -424,7 +424,3 @@ test-command = "python -c 'from synapse.synapse_rust import sum_as_string; print
424424
[tool.cibuildwheel.linux]
425425
# Wrap the repair command to correctly rename the built cpython wheels as ABI3.
426426
repair-wheel-command = "./.ci/scripts/auditwheel_wrapper.py -w {dest_dir} {wheel}"
427-
428-
[tool.cibuildwheel.macos]
429-
# Wrap the repair command to correctly rename the built cpython wheels as ABI3.
430-
repair-wheel-command = "./.ci/scripts/auditwheel_wrapper.py --require-archs {delocate_archs} -w {dest_dir} {wheel}"

0 commit comments

Comments
 (0)