From 09277fe51a3e055b1189d4103dc94d23cee9659f Mon Sep 17 00:00:00 2001 From: Alexandru Vasile Date: Wed, 6 Mar 2024 15:44:50 +0200 Subject: [PATCH] ci: Add subxt env var for controling test timeouts Signed-off-by: Alexandru Vasile --- .github/workflows/rust.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 1dcdcfb880..ea8fd2cb13 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -369,6 +369,10 @@ jobs: runs-on: ubuntu-latest-16-cores # needs: [clippy, wasm_clippy, check, wasm_check, docs] timeout-minutes: 60 + env: + # Set timeout for subxt tests. Light client needs to syncup properly. + # Per test we timeout after 15mins, more than enough for a single test. + SUBXT_TEST_TIMEOUT: 900 steps: - name: Checkout sources uses: actions/checkout@v4