From c00811df86c3202e830c828377b153776d5d8eb4 Mon Sep 17 00:00:00 2001 From: Martin Kim <46072231+martinkim0@users.noreply.github.com> Date: Thu, 7 Dec 2023 12:14:03 -0800 Subject: [PATCH] Increase timeout minutes for workflows (#207) * Increase timeout * Add timeout --- .github/workflows/run_linux_cuda.yml | 2 ++ .github/workflows/run_linux_cuda_branch.yml | 2 ++ 2 files changed, 4 insertions(+) diff --git a/.github/workflows/run_linux_cuda.yml b/.github/workflows/run_linux_cuda.yml index e1fbb05..44e51d2 100644 --- a/.github/workflows/run_linux_cuda.yml +++ b/.github/workflows/run_linux_cuda.yml @@ -75,6 +75,8 @@ jobs: image: martinkim0/scvi-tools:py${{ inputs.python-version }}-cu${{ inputs.cuda-version }}-devel-${{ inputs.scvi-tools-version }} options: --user root --gpus all + timeout-minutes: 600 # lenient timeout for scbasset tutorial + steps: - name: Checkout uses: actions/checkout@v3 diff --git a/.github/workflows/run_linux_cuda_branch.yml b/.github/workflows/run_linux_cuda_branch.yml index c281d46..c53e331 100644 --- a/.github/workflows/run_linux_cuda_branch.yml +++ b/.github/workflows/run_linux_cuda_branch.yml @@ -75,6 +75,8 @@ jobs: image: martinkim0/scvi-tools:py${{ inputs.python-version }}-cu${{ inputs.cuda-version }}-tutorials-${{ inputs.branch-name}} options: --user root --gpus all + timeout-minutes: 600 # lenient timeout for scbasset tutorial + steps: - name: Checkout uses: actions/checkout@v4