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
A while back we added two lock files, one for testing with recent
dependency versions and one for testing with minimal dependency versions
but at the time we never used them in CI.
Update the CI scripts to use the two lockfiles, requires using `--lock`
for various `cargo` incantations.
While we are at it move the lock files to the crate root to be uniform
with `rust-bitcoin` and make them more obvious.
Copy file name to clipboardExpand all lines: contrib/_test.sh
+23-23
Original file line number
Diff line number
Diff line change
@@ -20,56 +20,56 @@ if cargo --version | grep "1\.48"; then
20
20
fi
21
21
22
22
# Test if panic in C code aborts the process (either with a real panic or with SIGILL)
23
-
cargo test -- --ignored --exact 'tests::test_panic_raw_ctx_should_terminate_abnormally'2>&1| tee /dev/stderr | grep "SIGILL\\|panicked at '\[libsecp256k1\]"
23
+
cargo test --locked -- --ignored --exact 'tests::test_panic_raw_ctx_should_terminate_abnormally'2>&1| tee /dev/stderr | grep "SIGILL\\|panicked at '\[libsecp256k1\]"
0 commit comments