From c0e9e7ef13425904a82890f65508be78d696d550 Mon Sep 17 00:00:00 2001 From: vato007 Date: Sat, 15 Feb 2025 11:49:39 +1030 Subject: [PATCH] Reduce number of test threads in CI build to 1 to avoid container startup timeouts --- .gitea/workflows/test.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/test.yaml b/.gitea/workflows/test.yaml index fe2653e..ed0a929 100644 --- a/.gitea/workflows/test.yaml +++ b/.gitea/workflows/test.yaml @@ -11,4 +11,5 @@ jobs: lfs: true - uses: dtolnay/rust-toolchain@stable - uses: Swatinem/rust-cache@v2 - - run: cargo test --release + # Limit to one test at a time as the CI infrastructure struggles if trying to start too many containers at once + - run: cargo test --release -- --test-threads=1