File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -22,14 +22,20 @@ jobs:
22
22
display-os : Linux
23
23
- os : macos-14
24
24
display-os : macOS
25
+ arch : arm64
26
+ target : aarch64-apple-darwin
27
+ - os : macos-14
28
+ display-os : macOS
29
+ arch : x86_64
30
+ target : x86_64-apple-darwin
25
31
- os : windows-2022
26
32
display-os : Windows
27
33
- feature-args : ' '
28
34
feature-suffix : ' '
29
35
- feature-args : ' -Funstable-mobile-app'
30
36
feature-suffix : ' (-Funstable-mobile-app)'
31
37
32
- name : ${{ matrix.display-os }}${{ matrix.feature-suffix }}
38
+ name : ${{ matrix.display-os }} ${{ matrix.arch || '' }} ${{ matrix.feature-suffix }}
33
39
runs-on : ${{ matrix.os }}
34
40
35
41
steps :
40
46
uses : swatinem/rust-cache@98c8021b550208e191a6a3145459bfc9fb29c4c0 # 2.8.0
41
47
42
48
- name : Run Cargo Tests
43
- run : cargo test --all ${{ matrix.feature-args }}
49
+ run : cargo test --all ${{ matrix.feature-args }} ${{ matrix.target && format('--target {0}', matrix.target) || '' }}
You can’t perform that action at this time.
0 commit comments