put stack path in script
Some checks failed
Test / Run integration tests (pull_request) Failing after 5m56s
Test / Run compliance tests (pull_request) Successful in 4m48s
Test / Run unit tests (pull_request) Successful in 15m38s

This commit is contained in:
Roy Crihfield 2024-06-27 21:16:59 +08:00
parent 9a65864d17
commit e00393df94
2 changed files with 2 additions and 3 deletions

View File

@ -82,8 +82,7 @@ jobs:
progress: false
- name: Run testnet stack
working-directory: ./plugeth-statediff
run: |
./scripts/run-test-stack.sh ../fixturenet-eth-stacks/stack-orchestrator/stacks/fixturenet-plugeth
run: ./scripts/run-test-stack.sh
- name: Run tests
working-directory: ./system-tests
run: |

View File

@ -9,7 +9,7 @@ CONFIG_DIR=$(readlink -f "${CONFIG_DIR:-$(mktemp -d)}")
export CERC_REPO_BASE_DIR="${CERC_REPO_BASE_DIR:-$(git rev-parse --show-toplevel)/..}"
# Note: stack path should be absolute, otherwise SO looks for it in packaged stacks
stack_dir=$(readlink -f "$1")
stack_dir=$(readlink -f "${1:-../fixturenet-eth-stacks/stack-orchestrator/stacks/fixturenet-plugeth}")
laconic_so="laconic-so --verbose --stack $stack_dir"