File tree Expand file tree Collapse file tree 1 file changed +2
-8
lines changed Expand file tree Collapse file tree 1 file changed +2
-8
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ name: Build release artifacts
5
5
on :
6
6
# we build on PRs and develop to (hopefully) get early warning
7
7
# of things breaking (but only build one set of debs). PRs skip
8
- # building wheels on macOS & ARM.
8
+ # building wheels on ARM.
9
9
pull_request :
10
10
push :
11
11
branches : ["develop", "release-*"]
@@ -111,20 +111,14 @@ jobs:
111
111
runs-on : ${{ matrix.os }}
112
112
strategy :
113
113
matrix :
114
- os : [ubuntu-22.04, macos-13 ]
114
+ os : [ubuntu-22.04]
115
115
arch : [x86_64, aarch64]
116
116
# is_pr is a flag used to exclude certain jobs from the matrix on PRs.
117
117
# It is not read by the rest of the workflow.
118
118
is_pr :
119
119
- ${{ startsWith(github.ref, 'refs/pull/') }}
120
120
121
121
exclude :
122
- # Don't build macos wheels on PR CI.
123
- - is_pr : true
124
- os : " macos-13"
125
- # Don't build aarch64 wheels on mac.
126
- - os : " macos-13"
127
- arch : aarch64
128
122
# Don't build aarch64 wheels on PR CI.
129
123
- is_pr : true
130
124
arch : aarch64
You can’t perform that action at this time.
0 commit comments