Skip to content
This repository was archived by the owner on Apr 11, 2021. It is now read-only.
Closed
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
6 changes: 5 additions & 1 deletion .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,13 @@ jobs:
git submodule init
git submodule update

- name: Build
run: |
make all

- name: Test
run: |
bash test.sh --suppress-output
./test.sh -l --suppress-output

- name: Upload Log Artifacts
uses: actions/upload-artifact@v2
Expand Down
4 changes: 3 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
.PHONY: all integration-tests deployer geth-l2 batch-submitter data-transport-layer test

SHELL := /bin/bash

all:
@echo "Building in parallel in the background"
./build-local.sh
@while :; do [[ $$(docker ps --format='{{.Image}}' | grep builder | wc -l) == 0 ]] && exit 0; sleep 2; done;
@while :; do [ $$(docker ps --format='{{.Image}}' | grep builder | wc -l) == 0 ] && exit 0; sleep 2; done;

up-local:
./up.sh -l
Expand Down
2 changes: 1 addition & 1 deletion go-ethereum