From 5d1cf006ab50a6db008ecb6f1163bddd9e5de121 Mon Sep 17 00:00:00 2001 From: Jarek Radosz Date: Sun, 14 Aug 2022 17:30:15 +0200 Subject: [PATCH] DEV: Tweak core_frontend_tests timeouts (#17902) Each test chunk takes about 10 minutes, so those timeouts can be decreased from 20 to 15. And there are three of those chunks so total can be a bit over 30 minutes, hence the bump to 35. --- .github/workflows/tests.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index a2c9f200b8..38e1e947c6 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -179,7 +179,7 @@ jobs: name: core frontend (${{ matrix.browser }}) runs-on: ubuntu-latest container: discourse/discourse_test:slim-browsers - timeout-minutes: 30 + timeout-minutes: 35 strategy: fail-fast: false @@ -223,16 +223,16 @@ jobs: if: ${{ always() }} working-directory: ./app/assets/javascripts/discourse run: sudo -E -u discourse -H yarn ember exam --path /tmp/emberbuild --split=3 --partition=1 --launch "${{ matrix.browser }}" --random - timeout-minutes: 20 + timeout-minutes: 15 - name: Core QUnit 2 if: ${{ always() }} working-directory: ./app/assets/javascripts/discourse run: sudo -E -u discourse -H yarn ember exam --path /tmp/emberbuild --split=3 --partition=2 --launch "${{ matrix.browser }}" --random - timeout-minutes: 20 + timeout-minutes: 15 - name: Core QUnit 3 if: ${{ always() }} working-directory: ./app/assets/javascripts/discourse run: sudo -E -u discourse -H yarn ember exam --path /tmp/emberbuild --split=3 --partition=3 --launch "${{ matrix.browser }}" --random - timeout-minutes: 20 + timeout-minutes: 15