From 9be7a19e4e19edf64d597a8a2d2d5725b5295345 Mon Sep 17 00:00:00 2001 From: Roy Crihfield Date: Sun, 3 Sep 2023 16:09:21 +0800 Subject: [PATCH] run server in same step --- .gitea/workflows/tests.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.gitea/workflows/tests.yml b/.gitea/workflows/tests.yml index 0c87979..cabdf88 100644 --- a/.gitea/workflows/tests.yml +++ b/.gitea/workflows/tests.yml @@ -42,14 +42,15 @@ jobs: LEVELDB_PATH: ./fixture/chaindata LEVELDB_ANCIENT: ./fixture/chaindata/ancient LOG_FILE_PATH: ./server-log + timeout-minutes: 30 run: | ./eth-statediff-service --config ./test/ci-config.toml serve & - # Run a sanity test against the fixture data - # Complete integration tests are TODO - - name: Run test - timeout-minutes: 30 - run: | + # # Run a sanity test against the fixture data + # # Complete integration tests are TODO + # - name: Run test + # timeout-minutes: 30 + # run: | ./scripts/request-range.sh 0 32 || (E=$?; cat ./server-log; exit $E) until grep "Finished processing block 32" ./server-log