File tree 1 file changed +20
-1
lines changed
1 file changed +20
-1
lines changed Original file line number Diff line number Diff line change @@ -135,7 +135,6 @@ jobs:
135
135
- windows-latest
136
136
- macos-latest
137
137
- ubuntu-latest
138
- - ubuntu-24.04-arm
139
138
140
139
runs-on : ${{ matrix.os }}
141
140
@@ -161,6 +160,25 @@ jobs:
161
160
- name : Check that tracked archives are up to date
162
161
run : git diff --exit-code # If this fails, the fix is usually to commit a regenerated archive.
163
162
163
+ test-fast-arm :
164
+ runs-on : ubuntu-24.04-arm
165
+
166
+ steps :
167
+ - uses : actions/checkout@v4
168
+ - uses : dtolnay/rust-toolchain@stable
169
+ - uses : Swatinem/rust-cache@v2
170
+ - uses : taiki-e/install-action@v2
171
+ with :
172
+ tool : nextest
173
+ - name : Test (nextest)
174
+ env :
175
+ GIX_TEST_CREATE_ARCHIVES_EVEN_ON_CI : ' 1'
176
+ run : cargo nextest run --workspace --no-fail-fast
177
+ - name : Doctest
178
+ run : cargo test --workspace --doc --no-fail-fast
179
+ - name : Check that tracked archives are up to date
180
+ run : git diff --exit-code # If this fails, the fix is usually to commit a regenerated archive.
181
+
164
182
test-fixtures-windows :
165
183
runs-on : windows-latest
166
184
@@ -387,6 +405,7 @@ jobs:
387
405
env :
388
406
# List all jobs that are intended NOT to block PR auto-merge here.
389
407
EXPECTED_NONBLOCKING_JOBS : |-
408
+ test-fast-arm
390
409
cargo-deny-advisories
391
410
wasm
392
411
tests-pass
You can’t perform that action at this time.
0 commit comments