Skip to content

Commit

Permalink
debug: try --no-build
Browse files Browse the repository at this point in the history
add builder to saved images
  • Loading branch information
annieke committed May 28, 2021
1 parent 595bd45 commit 9a048f5
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:

- name: Bring the stack up
working-directory: ./ops
run: docker-compose up -d
run: docker-compose up -d --no-build

- name: Run the integration tests
working-directory: ./ops
Expand All @@ -87,7 +87,7 @@ jobs:

- name: Bring the stack up
working-directory: ./ops
run: docker-compose up -d --no-recreate && ./scripts/wait-for-sequencer.sh
run: docker-compose up -d --no-build && ./scripts/wait-for-sequencer.sh

- name: Test & deploy hardhat-example on Optimistic Ethereum
working-directory: ./examples/hardhat
Expand Down Expand Up @@ -153,7 +153,7 @@ jobs:

- name: Bring the stack up
working-directory: ./ops
run: docker-compose up -d && ./scripts/wait-for-sequencer.sh
run: docker-compose up -d --no-build && ./scripts/wait-for-sequencer.sh

# Sync tests cannot be run in docker
- name: Run the sync tests
Expand Down
1 change: 1 addition & 0 deletions ops/scripts/load-images.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ declare -a images=(
"integration-tests"
"l2geth"
"hardhat"
"builder"
)

## now loop through the above array
Expand Down
1 change: 1 addition & 0 deletions ops/scripts/save-ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ declare -a images=(
"integration-tests"
"l2geth"
"hardhat"
"builder"
)

mkdir -p /tmp/images
Expand Down

0 comments on commit 9a048f5

Please sign in to comment.