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
55on :
66 # we build on PRs and develop to (hopefully) get early warning
77 # of things breaking (but only build one set of debs). PRs skip
8- # building wheels on macOS & ARM.
8+ # building wheels on ARM.
99 pull_request :
1010 push :
1111 branches : ["develop", "release-*"]
@@ -111,20 +111,14 @@ jobs:
111111 runs-on : ${{ matrix.os }}
112112 strategy :
113113 matrix :
114- os : [ubuntu-22.04, macos-13 ]
114+ os : [ubuntu-22.04]
115115 arch : [x86_64, aarch64]
116116 # is_pr is a flag used to exclude certain jobs from the matrix on PRs.
117117 # It is not read by the rest of the workflow.
118118 is_pr :
119119 - ${{ startsWith(github.ref, 'refs/pull/') }}
120120
121121 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
128122 # Don't build aarch64 wheels on PR CI.
129123 - is_pr : true
130124 arch : aarch64
You can’t perform that action at this time.
0 commit comments