From ee97797867991401ef70bc5211a5cec34905c705 Mon Sep 17 00:00:00 2001 From: Konstantinos Date: Wed, 2 Jul 2025 16:13:11 +0200 Subject: [PATCH 1/2] ci: add custom timeout to ci job in order to save resources Signed-off-by: Konstantinos --- .github/workflows/conda.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/conda.yml b/.github/workflows/conda.yml index 394685acd3..d78f9f4361 100644 --- a/.github/workflows/conda.yml +++ b/.github/workflows/conda.yml @@ -21,6 +21,7 @@ jobs: os: [ubuntu-latest] python-version: ["3.9", "3.10"] runs-on: ${{ matrix.os }} + timeout: 46 # minutes, equal to max + 3*std over the last 600 successful runs env: QUICKTEST: True steps: From 4c855644df6b5e2bf6de9e7dae6d69de1fa23a37 Mon Sep 17 00:00:00 2001 From: Konstantinos Date: Thu, 3 Jul 2025 10:02:24 +0200 Subject: [PATCH 2/2] Typo fix Signed-off-by: Konstantinos --- .github/workflows/conda.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/conda.yml b/.github/workflows/conda.yml index d78f9f4361..275c7052f2 100644 --- a/.github/workflows/conda.yml +++ b/.github/workflows/conda.yml @@ -21,7 +21,7 @@ jobs: os: [ubuntu-latest] python-version: ["3.9", "3.10"] runs-on: ${{ matrix.os }} - timeout: 46 # minutes, equal to max + 3*std over the last 600 successful runs + timeout-minutes: 46 # equal to max + 3*std over the last 600 successful runs env: QUICKTEST: True steps: