Skip to content

Commit

Permalink
chore: add docker setup initiation in upgrade test suite workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
viraj124 committed Jan 7, 2025
1 parent 9075b59 commit f030adf
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/upgrade-test-suite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,18 @@ jobs:
- uses: ./.github/actions/setup-rust
- name: Build project
run: pnpm build
- name: Sets the tenderly rpc endpoint in the L1 docker container env
- name: Sets the tenderly rpc endpoint in the L1 docker container env and sets forking variable for fuel core setup
run: |
cat << EOF > l1_chain.env
TENDERLY_RPC_URL=${{ secrets.TENDERLY_RPC_URL }}
EOF
working-directory: ./packages/solidity-contracts/docker/envs
cat << EOF > fuel_core.env
FORKING=true
EOF
working-directory: docker/envs
- name: Starts docker containers
run: pnpm run node:up
- name: Run integration tests on a L1 fork after upgrading contracts
run: |
pnpm upgrade:test:integration
Expand Down

0 comments on commit f030adf

Please sign in to comment.