diff options
author | Timothee Cour <timothee.cour2@gmail.com> | 2021-06-05 00:47:28 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-05 09:47:28 +0200 |
commit | b9843b156dfc16f1f99cbee8fc8e55b7abd6c21b (patch) | |
tree | b66fbfc2311d41db866b281490aef0df7d0ebe5e | |
parent | 9c6259e55717acbc954140ef2bb0ca363971c8c7 (diff) | |
download | Nim-b9843b156dfc16f1f99cbee8fc8e55b7abd6c21b.tar.gz |
fix #18178, set a CI timeout for github action pipelines instead of the 6 hour default (#18179)
-rw-r--r-- | .github/workflows/ci_docs.yml | 1 | ||||
-rw-r--r-- | .github/workflows/ci_packages.yml | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/.github/workflows/ci_docs.yml b/.github/workflows/ci_docs.yml index ddef94fbe..6ae228d2d 100644 --- a/.github/workflows/ci_docs.yml +++ b/.github/workflows/ci_docs.yml @@ -44,6 +44,7 @@ jobs: name: ${{ matrix.target }} runs-on: ${{ matrix.os }} + timeout-minutes: 60 # refs bug #18178 steps: - name: 'Checkout' diff --git a/.github/workflows/ci_packages.yml b/.github/workflows/ci_packages.yml index aeb29e147..529e6e8b6 100644 --- a/.github/workflows/ci_packages.yml +++ b/.github/workflows/ci_packages.yml @@ -11,6 +11,7 @@ jobs: batch: ["allowed_failures", "0_3", "1_3", "2_3"] # list of `index_num` name: '${{ matrix.os }} (batch: ${{ matrix.batch }})' runs-on: ${{ matrix.os }} + timeout-minutes: 60 # refs bug #18178 env: NIM_TEST_PACKAGES: "1" NIM_TESTAMENT_BATCH: ${{ matrix.batch }} |