Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
24 changes: 0 additions & 24 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -181,17 +181,6 @@ jobs:
test_folder: "eth-l2"
- report-integration-tests

integration-tests-moonbeam:
executor: intergration-tests-executor
parallelism: 4
steps:
- download-solidity-compilers
- run-integration-tests:
docker_compose_file: "docker-compose-moonbeam.yml"
docker_compose_side_file: "docker-compose-moonbeam-side.yml"
test_folder: "alt-l2"
- report-integration-tests

integration-tests-avalanche:
executor: intergration-tests-executor
parallelism: 4
Expand All @@ -214,25 +203,12 @@ jobs:
test_folder: "alt-l2"
- report-integration-tests

integration-tests-fantom:
executor: intergration-tests-executor
parallelism: 4
steps:
- download-solidity-compilers
- run-integration-tests:
docker_compose_file: "docker-compose-fantom.yml"
docker_compose_side_file: "docker-compose-fantom-side.yml"
test_folder: "alt-l2"
- report-integration-tests

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

didn't delete the docker-compose file to still allow stack to be spun up until shutdown

workflows:
main:
jobs:
- integration-tests
- integration-tests-moonbeam
- integration-tests-avalanche
- integration-tests-bnb
- integration-tests-fantom
- go-lint-test-build:
name: proxyd-tests
binary_name: proxyd
Expand Down
4 changes: 0 additions & 4 deletions integration-tests/test/alt-l2/shared/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,9 @@ export const isLiveNetwork = () => {
}

export const HARDHAT_CHAIN_ID = 31337
export const MOONBEAM_CHAIN_ID = 1281
export const FANTOM_CHAIN_ID = 4003
export const AVALANCHE_CHAIN_ID = 43112
export const BNB_CHAIN_ID = 99
export const NON_ETHEREUM_CHAIN = [
MOONBEAM_CHAIN_ID,
FANTOM_CHAIN_ID,
AVALANCHE_CHAIN_ID,
BNB_CHAIN_ID,
]
Expand Down