From 1d7ea7765cbdad9ff8d605356253fd46467a175c Mon Sep 17 00:00:00 2001 From: Mike Hardy Date: Tue, 9 Apr 2024 11:24:24 -0500 Subject: [PATCH] test(ci, ios): ios build behaving strangely - tune timeouts the build is failing once (and very slowly) then building second time (but also slowly), have the individual runs timeout in 20mins (observably possible to build when successful within that) and increase overall workflow timeout so hopefully we get a build that succeeds --- .github/workflows/tests_e2e_ios.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests_e2e_ios.yml b/.github/workflows/tests_e2e_ios.yml index bd8283216..fd447dd0c 100644 --- a/.github/workflows/tests_e2e_ios.yml +++ b/.github/workflows/tests_e2e_ios.yml @@ -22,7 +22,7 @@ jobs: name: iOS runs-on: macos-14 # TODO matrix across APIs, at least 10 and 13 (lowest to highest) - timeout-minutes: 60 + timeout-minutes: 80 env: CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} steps: @@ -125,6 +125,7 @@ jobs: - name: Build App, Boot Simulator, Run App id: run1 + timeout-minutes: 20 continue-on-error: true run: | export PATH="/usr/lib/ccache:/usr/local/opt/ccache/libexec:$PATH" @@ -141,6 +142,7 @@ jobs: - name: Build App, Boot Simulator, Run App Retry 1 id: run2 + timeout-minutes: 20 if: steps.run1.outcome=='failure' continue-on-error: true run: | @@ -158,6 +160,7 @@ jobs: - name: Build App, Boot Simulator, Run App Retry 2 id: run3 + timeout-minutes: 20 if: steps.run2.outcome=='failure' continue-on-error: true run: | @@ -227,4 +230,4 @@ jobs: - uses: codecov/codecov-action@v3 with: - verbose: true \ No newline at end of file + verbose: true