File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 71
71
- uses : ./.github/actions/rust
72
72
with :
73
73
version : ${{ matrix.rust-toolchain }}
74
- components : ${{ matrix.rust-toolchain == 'nightly ' && 'llvm-tools' || '' }}
75
- tools : ${{ matrix.rust-toolchain == 'nightly ' && 'cargo-llvm-cov, ' || '' }} cargo-nextest
74
+ components : ${{ matrix.rust-toolchain == 'stable ' && 'llvm-tools' || '' }}
75
+ tools : ${{ matrix.rust-toolchain == 'stable ' && 'cargo-llvm-cov, ' || '' }} cargo-nextest
76
76
token : ${{ secrets.GITHUB_TOKEN }}
77
77
78
78
- id : nss-version
96
96
DUMP_SIMULATION_SEEDS="$(pwd)/simulation-seeds"
97
97
export DUMP_SIMULATION_SEEDS
98
98
# shellcheck disable=SC2086
99
- if [ "$TOOLCHAIN " == "nightly " ]; then
100
- cargo llvm-cov nextest $BUILD_TYPE --locked --mcdc --include-ffi --features ci --profile ci --codecov --output-path codecov.json
99
+ if [ "${{ matrix.rust-toolchain }} " == "stable " ]; then
100
+ cargo +${{ matrix.rust-toolchain }} llvm-cov nextest $BUILD_TYPE --locked --include-ffi --features ci --profile ci --codecov --output-path codecov.json
101
101
else
102
102
cargo nextest run $BUILD_TYPE --locked --features ci --profile ci
103
103
fi
@@ -127,7 +127,7 @@ jobs:
127
127
verbose : true
128
128
env :
129
129
CODECOV_TOKEN : ${{ secrets.CODECOV_TOKEN }}
130
- if : ${{ matrix.type == 'debug' && matrix.rust-toolchain == 'nightly' }}
130
+ if : matrix.type == 'debug' && matrix.rust-toolchain == 'stable'
131
131
132
132
- uses : codecov/test-results-action@f2dba722c67b86c6caa034178c6e4d35335f6706 # v1.1.0
133
133
if : ${{ always() }}
You can’t perform that action at this time.
0 commit comments