Skip to content

Commit 2b6ea50

Browse files
committed
Fix workflow to use cross properly
1 parent 3d9638f commit 2b6ea50

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/tests.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88
jobs:
99
test-accelerated:
10-
name: Test accelerated architectures (aarch64, x86_64)
10+
name: Test accelerated (aarch64, x86_64)
1111
strategy:
1212
matrix:
1313
os: [ubuntu-latest, ubuntu-24.04-arm, macos-latest]
@@ -40,7 +40,7 @@ jobs:
4040
run: cargo test --features=optimize_crc32_auto
4141

4242
test-x86:
43-
name: Test accelerated architectures (x86)
43+
name: Test accelerated (x86)
4444
runs-on: ubuntu-latest
4545
strategy:
4646
matrix:
@@ -62,10 +62,10 @@ jobs:
6262
- name: Test
6363
run: cross test --target ${{ matrix.target }}
6464
- name: Test (Optimized)
65-
run: cargo test --features=optimize_crc32_auto --target ${{ matrix.target }}
66-
65+
run: cross test --features=optimize_crc32_auto --target ${{ matrix.target }}
66+
6767
test-software:
68-
name: Test software fallback architectures
68+
name: Test software fallback
6969
runs-on: ubuntu-latest
7070
strategy:
7171
matrix:
@@ -87,4 +87,4 @@ jobs:
8787
- name: Test
8888
run: cross test --target ${{ matrix.target }}
8989
- name: Test (Optimized)
90-
run: cargo test --features=optimize_crc32_auto --target ${{ matrix.target }}
90+
run: cross test --features=optimize_crc32_auto --target ${{ matrix.target }}

0 commit comments

Comments
 (0)