@@ -95,16 +95,16 @@ jobs:
95
95
- name : Show CPU info for debugging
96
96
if : matrix.os == 'ubuntu-latest'
97
97
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
106
106
- 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
108
108
- if : matrix.build == 'nightly'
109
109
run : ${{ env.CARGO }} bench --verbose --manifest-path bench/Cargo.toml -- --test
110
110
0 commit comments