File tree Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -24,18 +24,22 @@ jobs:
24
24
fail-fast : false
25
25
matrix :
26
26
platform :
27
+ - linux-arm
27
28
- linux-x64
28
- - macos-arm64
29
+ - macos-arm
29
30
- macos-x64
30
31
- windows-x64
31
32
- wasm32-unknown
32
33
- wasm32-wasi
33
34
34
35
include :
36
+ - platform : linux-arm
37
+ os : ubuntu-24.04-arm
38
+ target : aarch64-unknown-linux-gnu
35
39
- platform : linux-x64
36
40
os : ubuntu-latest
37
41
target : x86_64-unknown-linux-gnu
38
- - platform : macos-arm64
42
+ - platform : macos-arm
39
43
os : macos-15
40
44
target : aarch64-apple-darwin
41
45
- platform : macos-x64
79
83
cargo build --package file_type --target ${{ matrix.target }}
80
84
81
85
- name : Test
82
- if : ${{ !startsWith( matrix.platform, 'linux-') && !startsWith(matrix.platform, 'wasm32-') }}
86
+ if : ${{ matrix.platform != 'linux-x64' && !startsWith(matrix.platform, 'wasm32-') }}
83
87
env :
84
88
CARGO_TERM_COLOR : always
85
89
GITHUB_TOKEN : ${{secrets.GITHUB_TOKEN}}
89
93
cargo test --workspace --all-features
90
94
91
95
- name : Test
92
- if : ${{ startsWith( matrix.platform, 'linux-') }}
96
+ if : ${{ matrix.platform == 'linux-x64' }}
93
97
env :
94
98
CARGO_TERM_COLOR : always
95
99
GITHUB_TOKEN : ${{secrets.GITHUB_TOKEN}}
You can’t perform that action at this time.
0 commit comments