You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After this change we still need to wait tikv to update the rust
toolchain to a newer version before this script can succeed due to
rust-lang/rust#118850
Copy file name to clipboardExpand all lines: jenkins/pipelines/ci/tikv/tikv_ghpr_coverage.groovy
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -64,12 +64,12 @@ stage("Cover") {
64
64
export FAIL_POINT=1
65
65
export ROCKSDB_SYS_SSE=1
66
66
export CARGO_INCREMENTAL=0
67
-
export RUSTFLAGS="-Zinstrument-coverage"
67
+
export RUSTFLAGS="-C instrument-coverage"
68
68
69
69
echo using gcc 8
70
70
source /opt/rh/devtoolset-8/enable
71
71
72
-
env RUSTFLAGS="-Zinstrument-coverage" LLVM_PROFILE_FILE="tikv-%p-%m.profraw" FAIL_POINT=1 RUST_TEST_THREADS=1 EXTRA_CARGO_ARGS=--no-fail-fast make test || true
72
+
env RUSTFLAGS="-C instrument-coverage" LLVM_PROFILE_FILE="tikv-%p-%m.profraw" FAIL_POINT=1 RUST_TEST_THREADS=1 EXTRA_CARGO_ARGS=--no-fail-fast make test || true
73
73
"""
74
74
75
75
sh label: 'Post-build: Generating coverage', script: """
0 commit comments