Skip to content

Commit dc6945c

Browse files
changed path for contracts
1 parent a2c7322 commit dc6945c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/goto-transcoder.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,12 @@ jobs:
3030

3131
# Step 2: Generate contracts programs
3232
- name: Generate contracts
33-
run: ./scripts/run-kani.sh --kani-args --keep-temps --only-codegen --target-dir contracts
33+
run: ./scripts/run-kani.sh --kani-args --keep-temps --only-codegen --target-dir kani/contracts
3434

3535
# Debug: Check contracts
3636
- name: List contracts found
37-
run: ls contracts
37+
run: ls kani/contracts
3838

3939
# Step 3: Run goto-transcoder
4040
- name: Run goto-transcoder
41-
run: ./scripts/run-goto-transcoder.sh contracts checked_unchecked.*.out
41+
run: ./scripts/run-goto-transcoder.sh kani/contracts checked_unchecked.*.out

scripts/run-goto-transcoder.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ set -e
55
##############
66
# PARAMETERS #
77
##############
8-
contract_folder=$1
8+
contract_folder=$1/kani_verify_std/target/x86_64-unknown-linux-gnu/debug/deps
99
supported_regex=$2
1010
unsupported_regex=neg
1111

0 commit comments

Comments
 (0)