File tree Expand file tree Collapse file tree 2 files changed +13
-14
lines changed Expand file tree Collapse file tree 2 files changed +13
-14
lines changed Original file line number Diff line number Diff line change @@ -159,8 +159,8 @@ jobs:
159
159
run : cargo test --no-default-features
160
160
161
161
check_test_macos :
162
- name : Check and test macOS
163
- runs-on : macos-latest
162
+ name : Check and test macOS Intel
163
+ runs-on : macos-13
164
164
steps :
165
165
- name : Checkout sources
166
166
uses : actions/checkout@v4
@@ -175,19 +175,20 @@ jobs:
175
175
run : cargo test --no-default-features
176
176
177
177
check_macos_arm :
178
- name : Check macOS aarch64
178
+ name : Check and test macOS Arm
179
179
runs-on : macos-latest
180
180
steps :
181
181
- name : Checkout sources
182
182
uses : actions/checkout@v4
183
183
184
184
- name : Install stable toolchain
185
185
uses : dtolnay/rust-toolchain@stable
186
- with :
187
- targets : aarch64-apple-darwin
188
186
189
- - name : Run cargo check for arm
190
- run : cargo check --target aarch64-apple-darwin
187
+ - name : Run cargo check
188
+ run : cargo check --no-default-features
189
+
190
+ - name : Run cargo test
191
+ run : cargo test --no-default-features
191
192
192
193
193
194
Original file line number Diff line number Diff line change @@ -192,8 +192,8 @@ jobs:
192
192
asset_name : camilladsp-windows7-amd64.zip
193
193
tag : ${{ github.ref }}
194
194
macos :
195
- name : macOS
196
- runs-on : macos-latest
195
+ name : macOS Intel
196
+ runs-on : macos-13
197
197
steps :
198
198
- name : Checkout sources
199
199
uses : actions/checkout@v4
@@ -217,22 +217,20 @@ jobs:
217
217
218
218
219
219
macos_arm :
220
- name : macOS aarch64
220
+ name : macOS Arm
221
221
runs-on : macos-latest
222
222
steps :
223
223
- name : Checkout sources
224
224
uses : actions/checkout@v4
225
225
226
226
- name : Install stable toolchain
227
227
uses : dtolnay/rust-toolchain@stable
228
- with :
229
- targets : aarch64-apple-darwin
230
228
231
229
- name : Build
232
- run : cargo build --release --target aarch64-apple-darwin
230
+ run : cargo build --release
233
231
234
232
- name : Compress
235
- run : tar -zcvf camilladsp.tar.gz -C target/aarch64-apple-darwin/ release camilladsp
233
+ run : tar -zcvf camilladsp.tar.gz -C target/release camilladsp
236
234
237
235
- name : Upload binaries to release
238
236
uses : svenstaro/upload-release-action@v2
You can’t perform that action at this time.
0 commit comments