From 656f5db1d0ea30df17a54467826c1ab331bf406c Mon Sep 17 00:00:00 2001 From: Thomas Eizinger Date: Mon, 12 May 2025 21:30:52 +1000 Subject: [PATCH] ci(rust): add timeout to GUI smoke tests (#9085) These don't have an inherent timeout so the CI job gets stuck forever. They typically finish in about a minute. --- .github/workflows/_rust.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/_rust.yml b/.github/workflows/_rust.yml index 7320d01ba..c80659097 100644 --- a/.github/workflows/_rust.yml +++ b/.github/workflows/_rust.yml @@ -161,6 +161,7 @@ jobs: - name: Run smoke test working-directory: ./rust run: cargo run -p gui-smoke-test + timeout-minutes: 2 headless-client: name: headless-client-${{ matrix.test }}-${{ matrix.runs-on }}