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
28 changes: 1 addition & 27 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ commands:
- run:
name: Bring up services
command: |
docker-compose -f <<parameters.docker_compose_file>> -f docker-compose-side.yml up -d bobalink aa_deployer
docker-compose -f <<parameters.docker_compose_file>> -f docker-compose-side.yml up -d bobalink aa_deployer bundler
working_directory: ops
- run:
name: Start background logging
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

L257 - lets uncomment test_flow_bundler_and_depcheck?

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.

this actually does not exist in upstream anymore! will remove completely

Expand Down Expand Up @@ -167,31 +167,6 @@ jobs:
command: make <<parameters.binary_name>>
working_directory: <<parameters.working_directory>>

test_flow_bundler_and_depcheck:
docker: # run the steps with Docker
- image: cimg/node:16.6.2
steps: # a collection of executable commands
- checkout
- attach_workspace:
at: .
- run: # run hardhat-node as standalone process fork
command: yarn && yarn build
working_directory: ./
- run: # run hardhat-node as standalone process fork
name: hardhat-node-process
command: yarn hardhat-node
background: true
working_directory: ./packages/boba/bundler
- run: # run tests
name: test
command: yarn test-flows | tee /tmp/test-flows-results.log
working_directory: ./packages/boba/bundler
- run:
name: depcheck
command: yarn depcheck
working_directory: ./packages/boba/bundler
- store_test_results: # special step to upload test results for display in Test Summary
path: /tmp/test-flow-results.log
integration-tests:
executor: intergration-tests-executor
parallelism: 4
Expand Down Expand Up @@ -254,5 +229,4 @@ workflows:
name: proxyd-tests
binary_name: proxyd
working_directory: go/proxyd
# - test_flow_bundler_and_depcheck

1 change: 0 additions & 1 deletion integration-tests/hardhat.config.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { HardhatUserConfig } from 'hardhat/types'

// Hardhat plugins
import '@nomiclabs/hardhat-ethers'
import '@nomiclabs/hardhat-waffle'
Expand Down
2 changes: 2 additions & 0 deletions integration-tests/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,11 @@
"@openzeppelin/test-helpers": "^0.5.15",
"@boba/api": "0.0.1",
"@boba/contracts": "0.0.1",
"@boba/accountabstraction": "1.0.0",
"@eth-optimism/contracts": "^0.5.11",
"@eth-optimism/core-utils": "0.8.1",
"@eth-optimism/sdk": "1.0.1",
"@boba/bundler_sdk": "0.2.3",
"@ethersproject/abstract-provider": "^5.5.0",
"@ethersproject/providers": "^5.5.3",
"@ethersproject/transactions": "^5.5.0",
Expand Down
Loading