Skip to content

Commit 844b774

Browse files
committed
ci: add $TARGET to cargo commands
OK, so it wasn't cross' fault. It was just me being dumb. Sigh.
1 parent be1d025 commit 844b774

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

.github/workflows/ci.yml

+9-9
Original file line numberDiff line numberDiff line change
@@ -95,16 +95,16 @@ jobs:
9595
- name: Show CPU info for debugging
9696
if: matrix.os == 'ubuntu-latest'
9797
run: lscpu
98-
- run: ${{ env.CARGO }} build --verbose
99-
- run: ${{ env.CARGO }} doc --verbose
100-
- run: ${{ env.CARGO }} test --verbose
101-
- run: ${{ env.CARGO }} test --lib --verbose --no-default-features --features std,perf-literal
102-
- run: ${{ env.CARGO }} test --lib --verbose --no-default-features
103-
- run: ${{ env.CARGO }} test --lib --verbose --no-default-features --features std
104-
- run: ${{ env.CARGO }} test --lib --verbose --no-default-features --features perf-literal
105-
- run: ${{ env.CARGO }} test --lib --verbose --no-default-features --features std,perf-literal,logging
98+
- run: ${{ env.CARGO }} build --verbose $TARGET
99+
- run: ${{ env.CARGO }} doc --verbose $TARGET
100+
- run: ${{ env.CARGO }} test --verbose $TARGET
101+
- run: ${{ env.CARGO }} test --lib --verbose --no-default-features --features std,perf-literal $TARGET
102+
- run: ${{ env.CARGO }} test --lib --verbose --no-default-features $TARGET
103+
- run: ${{ env.CARGO }} test --lib --verbose --no-default-features --features std $TARGET
104+
- run: ${{ env.CARGO }} test --lib --verbose --no-default-features --features perf-literal $TARGET
105+
- run: ${{ env.CARGO }} test --lib --verbose --no-default-features --features std,perf-literal,logging $TARGET
106106
- if: matrix.build == 'nightly'
107-
run: ${{ env.CARGO }} build --manifest-path aho-corasick-debug/Cargo.toml
107+
run: ${{ env.CARGO }} build --manifest-path aho-corasick-debug/Cargo.toml $TARGET
108108
- if: matrix.build == 'nightly'
109109
run: ${{ env.CARGO }} bench --verbose --manifest-path bench/Cargo.toml -- --test
110110

0 commit comments

Comments
 (0)