Skip to content

Commit 89b7e89

Browse files
committed
Fixes
1 parent d9ee732 commit 89b7e89

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

.github/workflows/check.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,9 @@ jobs:
111111
# shellcheck disable=SC2086
112112
if [ "$TOOLCHAIN" == "stable" ]; then
113113
cargo llvm-cov test $BUILD_TYPE --locked --include-ffi --codecov --output-path codecov.json
114-
cargo llvm-cov report $BUILD_TYPE --lcov --include-ffi --output-path lcov.info
114+
if [ "$RUNNER_OS" == "Linux" ] && [ -z "$BUILD_TYPE" ]; then
115+
cargo llvm-cov report --lcov --include-ffi --output-path lcov.info
116+
fi
115117
elif [ -n "$CAREFUL" ]; then
116118
cargo careful test $BUILD_TYPE --locked --target "$(rustc --print host-tuple)"
117119
fi
@@ -172,6 +174,7 @@ jobs:
172174
crap:
173175
name: CRAP analysis
174176
needs: check
177+
if: ${{ !cancelled() }}
175178
runs-on: ubuntu-24.04
176179
permissions:
177180
contents: read

0 commit comments

Comments
 (0)