From 86c4a99985047ea055b0e2e6e75d391887d31f20 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Vannicatte?= Date: Wed, 9 Feb 2022 16:57:39 +0100 Subject: [PATCH 1/2] chore: set lower github actions timeout --- .github/workflows/check.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 48573bdbf5..240acb3d8f 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -14,6 +14,7 @@ concurrency: jobs: setup: runs-on: ubuntu-20.04 + timeout-minutes: 1 steps: - uses: actions/checkout@v2 with: @@ -43,6 +44,7 @@ jobs: specs: runs-on: ubuntu-20.04 + timeout-minutes: 1 needs: setup if: ${{ always() && needs.setup.outputs.RUN_SPECS == 'true' }} strategy: @@ -65,6 +67,7 @@ jobs: run: yarn build:specs ${{ matrix.client }} client_javascript: + timeout-minutes: 1 runs-on: ubuntu-20.04 needs: - setup @@ -102,6 +105,7 @@ jobs: client_java: runs-on: ubuntu-20.04 + timeout-minutes: 1 needs: - setup - specs @@ -139,6 +143,7 @@ jobs: client_php: runs-on: ubuntu-20.04 + timeout-minutes: 1 needs: - setup - specs @@ -169,6 +174,7 @@ jobs: cts: runs-on: ubuntu-20.04 + timeout-minutes: 1 needs: - client_javascript - client_java From f9afaf33df6c23fc9e247dd8b6221f36a4aa75cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Vannicatte?= Date: Wed, 9 Feb 2022 17:03:48 +0100 Subject: [PATCH 2/2] set real timeouts --- .github/workflows/check.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 240acb3d8f..b0db4f50b6 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -14,7 +14,7 @@ concurrency: jobs: setup: runs-on: ubuntu-20.04 - timeout-minutes: 1 + timeout-minutes: 10 steps: - uses: actions/checkout@v2 with: @@ -44,7 +44,7 @@ jobs: specs: runs-on: ubuntu-20.04 - timeout-minutes: 1 + timeout-minutes: 10 needs: setup if: ${{ always() && needs.setup.outputs.RUN_SPECS == 'true' }} strategy: @@ -67,7 +67,7 @@ jobs: run: yarn build:specs ${{ matrix.client }} client_javascript: - timeout-minutes: 1 + timeout-minutes: 10 runs-on: ubuntu-20.04 needs: - setup @@ -105,7 +105,7 @@ jobs: client_java: runs-on: ubuntu-20.04 - timeout-minutes: 1 + timeout-minutes: 10 needs: - setup - specs @@ -143,7 +143,7 @@ jobs: client_php: runs-on: ubuntu-20.04 - timeout-minutes: 1 + timeout-minutes: 10 needs: - setup - specs @@ -174,7 +174,7 @@ jobs: cts: runs-on: ubuntu-20.04 - timeout-minutes: 1 + timeout-minutes: 20 needs: - client_javascript - client_java