Skip to content

Commit 943dedc

Browse files
committed
Add lockfile
These are not used by CI but are hopefully useful for testing with Nix. The CI here is old as hell. Just to get things working create a lock file, copy it into place, and the use `cargo --locked` anyplace that will be run by the MSRV job so it doesn't get updated.
1 parent 0539585 commit 943dedc

File tree

8 files changed

+1098
-45
lines changed

8 files changed

+1098
-45
lines changed

.github/workflows/rust.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ jobs:
159159
- name: Running address sanitizer
160160
env:
161161
DO_ASAN: true
162-
run: cd hashes && ./contrib/test.sh
162+
run: cp Cargo-recent.lock Cargo.lock && cd hashes && ./contrib/test.sh
163163

164164
WASM:
165165
name: WebAssembly Build # hashes crate only.
@@ -172,4 +172,4 @@ jobs:
172172
- name: Running WASM build
173173
env:
174174
DO_WASM: true
175-
run: cd hashes && ./contrib/test.sh
175+
run: cp Cargo-recent.lock Cargo.lock && cd hashes && ./contrib/test.sh

0 commit comments

Comments
 (0)