From 23d7d522cca964e8d3126845a2551fd2fd68fe25 Mon Sep 17 00:00:00 2001 From: Abdul Rabbani Date: Thu, 9 Jun 2022 17:58:49 -0400 Subject: [PATCH] Update README and condition for cleanup --- .github/workflows/system-tests.yml | 2 +- README.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/system-tests.yml b/.github/workflows/system-tests.yml index aff86f9..0f2a525 100644 --- a/.github/workflows/system-tests.yml +++ b/.github/workflows/system-tests.yml @@ -85,7 +85,7 @@ jobs: make system-test-ci - name: Clean up the docker containers - if: steps.compose.outcome == 'success' + if: always() && steps.compose.outcome == 'success' shell: bash run: | /usr/local/bin/docker-compose \ diff --git a/README.md b/README.md index 0f5a3a2..98beecf 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ To run the application, do as follows: ``` ./wrapper.sh -e skip \ - -d ../docker/local/docker-compose-eth-beacon-db.yml \ + -d ../docker/local/docker-compose-ipld-eth-beacon-db.yml \ -d ../docker/latest/docker-compose-lighthouse.yml \ -v remove \ -p ../local-config.sh @@ -37,7 +37,7 @@ To run the application, do as follows: 2. Run the start up command. ``` -go run -race main.go capture historic --config ./example.ipld-eth-beacon-indexer-config.json +go run -race main.go capture full --config ./example.ipld-eth-beacon-indexer-config.json ``` ## Running Tests