Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

EVM integration tests #1241

Merged
merged 31 commits into from
Jan 17, 2024
Merged
Changes from 1 commit
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
e4fc527
in progress
jewei1997 Jan 13, 2024
82ee403
in progress
jewei1997 Jan 14, 2024
2d03c39
cast integration script works
jewei1997 Jan 16, 2024
cd9118d
remove unused script
jewei1997 Jan 16, 2024
fb94366
try to get hardhat tests to run
jewei1997 Jan 16, 2024
56e7cff
try to get integration tests to run again
jewei1997 Jan 16, 2024
0be1627
try to fix gh actionsg
jewei1997 Jan 16, 2024
5b68f21
fix integration gh action
jewei1997 Jan 16, 2024
ba19e98
another fix
jewei1997 Jan 16, 2024
47404c8
add hardhat test yaml
jewei1997 Jan 16, 2024
bc46ecd
add npm ci
jewei1997 Jan 16, 2024
48cf4b0
comment out other integration tests
jewei1997 Jan 16, 2024
92ba7e3
try two modules and remove node install
stevenlanders Jan 16, 2024
16d2c23
try without the setup-node to see if it prevented docker starting
stevenlanders Jan 16, 2024
6fbfc3e
attempt docker not in background to see log
stevenlanders Jan 16, 2024
094d237
try background again
stevenlanders Jan 16, 2024
355f1ab
unremove sending DONE to build.complete
jewei1997 Jan 17, 2024
871f1ae
remove foundry installation in docker container
jewei1997 Jan 17, 2024
b494fe6
remove more foundry stuff
jewei1997 Jan 17, 2024
6a38c1d
remove cast stuff from hardhat test runner
jewei1997 Jan 17, 2024
0591f46
install node v16 in integration test gh workflows
jewei1997 Jan 17, 2024
0f44f86
remove commented out code for calling setup_evm.sh
jewei1997 Jan 17, 2024
f13f536
fix indentation in gh workflows
jewei1997 Jan 17, 2024
7fa1e1c
put in dummy verifier
jewei1997 Jan 17, 2024
ac67b16
add package-lock.json
jewei1997 Jan 17, 2024
7c062f9
have log fetching test search from block 0 to latest instead
jewei1997 Jan 17, 2024
d641bc8
uncomment other integration tests + polish
jewei1997 Jan 17, 2024
7f67a9d
fix foundry test, unexpected fuzz test
jewei1997 Jan 17, 2024
bb3ae74
call testRevert revertIfTrue in hardhat test as well
jewei1997 Jan 17, 2024
c29f5f3
Merge branch 'evm' into evm-integration-tests
jewei1997 Jan 17, 2024
3ae1adc
Merge branch 'evm' into evm-integration-tests
jewei1997 Jan 17, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
attempt docker not in background to see log
  • Loading branch information
stevenlanders committed Jan 16, 2024
commit 6fbfc3e1381210da91d36c282ea8a9c391d83ecf
2 changes: 1 addition & 1 deletion .github/workflows/integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ jobs:
go-version: '1.21'

- name: Start 4 node docker cluster
run: make clean && INVARIANT_CHECK_INTERVAL=10 ${{matrix.test.env}} make docker-cluster-start &
run: make clean && INVARIANT_CHECK_INTERVAL=10 ${{matrix.test.env}} make docker-cluster-start

- name: Wait for docker cluster to start
run: |
Expand Down
Loading