-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(ci): add deposit and withdrawal e2e tests
- Loading branch information
Showing
7 changed files
with
89 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
name: 'Deposit and Withdrawal End To End Test' | ||
on: | ||
push: | ||
branches: | ||
- feat/OR-1749-deposit-withdraw-e2e-tests | ||
|
||
jobs: | ||
deposit-withdrawal-e2e-tests: | ||
name: 'Deposit and Withdrawal E2E tests' | ||
runs-on: ubuntu-latest | ||
container: | ||
image: tokamaknetwork/thanos-ci-builder:latest | ||
steps: | ||
- name: Check CPUs | ||
run: lscpu && echo | ||
|
||
- name: Checkout | ||
uses: actions/[email protected] | ||
|
||
- name: Add repository to git safe directories | ||
run: git config --global --add safe.directory $GITHUB_WORKSPACE | ||
|
||
- name: Git submodules | ||
run: make submodules | ||
|
||
- name: Setup | ||
run: | | ||
make cannon-prestate | ||
DEPLOYMENT_CONTEXT=devnetL1 make devnet-allocs | ||
- name: Run deposit withdrawal e2e tests | ||
run: make test-deposit-withdrawal | ||
working-directory: op-e2e |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters