From 2489f42106d7d7499b837c14ac968b35b8091ea5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ole=20Andr=C3=A9=20Vadla=20Ravn=C3=A5s?= Date: Thu, 30 May 2024 20:54:33 +0200 Subject: [PATCH] ci: Allow Corellium test steps to fail for now Until we figure out the stability issue. --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 988a44c9b..5c032f30e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -200,6 +200,7 @@ jobs: run: tar -C build/tests -czf /tmp/runner.tar.gz gum-tests data/ - name: Test on Corellium iOS device if: matrix.id == 'ios-arm64' + continue-on-error: true uses: frida/corellium-action@v4 with: token: ${{ secrets.GITHUB_TOKEN }} @@ -215,6 +216,7 @@ jobs: ./gum-tests - name: Test on Corellium Android device if: matrix.id == 'android-arm64' + continue-on-error: true uses: frida/corellium-action@v4 with: token: ${{ secrets.GITHUB_TOKEN }}