Skip to content

Commit a03f255

Browse files
committed
simple workaround for unit-test and conformance-test
1 parent 8582f3e commit a03f255

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/ci.yml

+6-2
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,9 @@ jobs:
169169
verus/source
170170
key: verus-${{ runner.os }}-${{ env.verus_commit }}
171171
- name: Pin home to version 0.5.9 (workaround)
172-
run: cargo update home --precise 0.5.9
172+
run: |
173+
mv verus ../verus
174+
cargo update home --precise 0.5.9
173175
- name: Run unit tests
174176
run: cargo test unit_tests
175177
conformance-tests:
@@ -196,7 +198,9 @@ jobs:
196198
- name: Set up a kind cluster
197199
run: kind create cluster
198200
- name: Pin home to version 0.5.9 (workaround)
199-
run: cargo update home --precise 0.5.9
201+
run: |
202+
mv verus ../verus
203+
cargo update home --precise 0.5.9
200204
- name: Run conformance tests
201205
run: cargo test conformance_tests -- --nocapture
202206
framework-verification:

0 commit comments

Comments
 (0)