Skip to content

Commit

Permalink
Update e2e workflow docker command
Browse files Browse the repository at this point in the history
  • Loading branch information
vlady-kotsev committed Aug 13, 2024
1 parent 0eebf1e commit f71940f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/run-e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
run: |
echo "${{ secrets.E2E_DAVE_CONFIG }}" > ./examples/three-validators/dave/config/node.yml
- name: Build the stack
run: cd examples/three-validators; docker-compose up -d
run: cd examples/three-validators; docker compose up -d
- name: Perform health check on nodes
shell: bash
run: >
Expand Down Expand Up @@ -72,10 +72,10 @@ jobs:
if: ${{ always() }}
run: |
cd examples/three-validators/ && mkdir logs &&
touch ./logs/alice.log && docker-compose logs alice > ./logs/alice.log &&
touch ./logs/bob.log && docker-compose logs bob > ./logs/bob.log &&
touch ./logs/carol.log && docker-compose logs carol > ./logs/carol.log &&
touch ./logs/dave.log && docker-compose logs dave_read_only > ./logs/dave.log
touch ./logs/alice.log && docker compose logs alice > ./logs/alice.log &&
touch ./logs/bob.log && docker compose logs bob > ./logs/bob.log &&
touch ./logs/carol.log && docker compose logs carol > ./logs/carol.log &&
touch ./logs/dave.log && docker compose logs dave_read_only > ./logs/dave.log
- name: Upload Logs
if: ${{ always() }}
uses: actions/upload-artifact@v2
Expand Down

0 comments on commit f71940f

Please sign in to comment.