From: Laszlo Gombos Date: Wed, 7 Dec 2022 20:04:27 +0000 (+0000) Subject: ci: reduce the timeout for local tests to 30 min X-Git-Tag: 058~17 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=2bb1c4f7f3ec363a2e4f514c694e5d1a84a7b599;p=thirdparty%2Fdracut.git ci: reduce the timeout for local tests to 30 min The main motivation here is to do not allow each test to grow beyond 30 min. If a longer test is needed for some reason, it should be split into two tests. Currently each local test is passing at 20 min. The longest running local test is test 12: encrypted LVM PV on a degraded RAID-5. --- diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index af7847a1d..3ed1a986f 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -10,7 +10,7 @@ env: jobs: basic: runs-on: ubuntu-latest - timeout-minutes: 45 + timeout-minutes: 30 concurrency: group: ${{ github.workflow }}-${{ github.ref }}-${{ matrix.container }}-${{ matrix.test }} cancel-in-progress: true @@ -39,7 +39,7 @@ jobs: run: ./tools/test-github.sh "TEST-${{ matrix.test }}" ${{ matrix.test }} test: runs-on: ubuntu-latest - timeout-minutes: 45 + timeout-minutes: 30 concurrency: group: ${{ github.workflow }}-${{ github.ref }}-${{ matrix.container }}-${{ matrix.test }} cancel-in-progress: true