Skip to content

Commit

Permalink
fix e2e tests CI
Browse files Browse the repository at this point in the history
  • Loading branch information
bianyuanop committed Jun 19, 2024
1 parent acc3b20 commit b1ece93
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/seq-e2e-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ jobs:
steps:
- name: Git checkout
uses: actions/checkout@v3
- name: Install killall
run: |
sudo apt-get update
sudo apt-get install psmisc
- name: Set up Go
uses: actions/setup-go@v4
with:
Expand All @@ -25,6 +29,10 @@ jobs:
uses: hoverkraft-tech/compose-action@v2.0.1
with:
compose-file: "./compose.yml"
down-flags: |
-v
services: |
l1
- name: Run e2e tests
run: |
chmod +x ./scripts/run.sh
Expand Down
4 changes: 2 additions & 2 deletions compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ services:
- "7060:6060"
volumes:
- "l1_data:/db"
- "${PWD}/genesis-l1.json:/genesis.json"
- "${PWD}/test-jwt-secret.txt:/config/test-jwt-secret.txt"
- "./genesis-l1.json:/genesis.json"
- "./test-jwt-secret.txt:/config/test-jwt-secret.txt"
environment:
GETH_MINER_RECOMMIT: 100ms

0 comments on commit b1ece93

Please sign in to comment.