mirror of
https://github.com/logos-blockchain/lssa.git
synced 2026-04-11 21:53:48 +00:00
debug: use ubuntu 22.04 and test-threads=1
This commit is contained in:
parent
dcf2ddc872
commit
4eb8ac69d6
19
.github/workflows/ci.yml
vendored
19
.github/workflows/ci.yml
vendored
@ -161,7 +161,7 @@ jobs:
|
||||
run: cargo nextest run -p integration_tests -- --skip tps_test --skip indexer
|
||||
|
||||
integration-tests-indexer:
|
||||
runs-on: ubuntu-latest
|
||||
runs-on: ubuntu-22.04
|
||||
timeout-minutes: 60
|
||||
steps:
|
||||
- uses: actions/checkout@v5
|
||||
@ -186,7 +186,22 @@ jobs:
|
||||
env:
|
||||
RISC0_DEV_MODE: "1"
|
||||
RUST_LOG: "info"
|
||||
run: cargo nextest run -p integration_tests indexer
|
||||
run: cargo nextest run -p integration_tests indexer --test-threads=1
|
||||
|
||||
- name: Debug Docker state on failure
|
||||
if: failure()
|
||||
run: |
|
||||
echo "=== docker ps -a ==="
|
||||
docker ps -a || true
|
||||
|
||||
echo "=== docker network ls ==="
|
||||
docker network ls || true
|
||||
|
||||
echo "=== logs: bedrock/cfgsync containers ==="
|
||||
for c in $(docker ps -a --format '{{.Names}}' | grep -E 'logos-blockchain|cfgsync' | tail -n 40); do
|
||||
echo "----- ${c} -----"
|
||||
docker logs --tail 300 "$c" || true
|
||||
done
|
||||
|
||||
valid-proof-test:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user