From 97b5f35ac4fe3f0d0a2665d8c90ef64feae02c70 Mon Sep 17 00:00:00 2001 From: Takashi Kokubun Date: Tue, 12 Mar 2024 11:06:04 -0700 Subject: [PATCH] Do not fail CI when Launchable fails It seems to randomly fail: ``` + launchable verify Organization: 'ruby' Workspace: 'ruby' Proxy: None Platform: 'macOS-12.7.3-x86_64-i386-64bit' Python version: '3.12.2' Java command: 'java' launchable version: '1.83.0' Authentication failed. Please set the LAUNCHABLE_TOKEN. If you intend to use tokenless authentication, kindly reach out to our support team for further assistance. ``` https://github.com/ruby/ruby/actions/runs/8253299142/job/22574800261 Such failures should not impact the CI result. --- .github/workflows/macos.yml | 1 + .github/workflows/ubuntu.yml | 1 + .github/workflows/yjit-macos.yml | 1 + .github/workflows/yjit-ubuntu.yml | 1 + 4 files changed, 4 insertions(+) diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 99f9257751c1d0..3ddf0d1dfc76db 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -98,6 +98,7 @@ jobs: launchable-token: ${{ secrets.LAUNCHABLE_TOKEN }} builddir: build srcdir: src + continue-on-error: true - name: Set extra test options run: echo "TESTS=$TESTS ${{ matrix.test_opts }}" >> $GITHUB_ENV diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml index 279fb4ade8022e..58acb40d4e098a 100644 --- a/.github/workflows/ubuntu.yml +++ b/.github/workflows/ubuntu.yml @@ -115,6 +115,7 @@ jobs: launchable-token: ${{ secrets.LAUNCHABLE_TOKEN }} builddir: build srcdir: src + continue-on-error: true - name: make ${{ matrix.test_task }} run: >- diff --git a/.github/workflows/yjit-macos.yml b/.github/workflows/yjit-macos.yml index 0586e236d1562e..b8fd3428b3a414 100644 --- a/.github/workflows/yjit-macos.yml +++ b/.github/workflows/yjit-macos.yml @@ -122,6 +122,7 @@ jobs: launchable-token: ${{ secrets.LAUNCHABLE_TOKEN }} builddir: build srcdir: src + continue-on-error: true - name: make ${{ matrix.test_task }} run: >- diff --git a/.github/workflows/yjit-ubuntu.yml b/.github/workflows/yjit-ubuntu.yml index 899c30714601df..6185cbf524add1 100644 --- a/.github/workflows/yjit-ubuntu.yml +++ b/.github/workflows/yjit-ubuntu.yml @@ -175,6 +175,7 @@ jobs: launchable-token: ${{ secrets.LAUNCHABLE_TOKEN }} builddir: build srcdir: src + continue-on-error: true - name: make ${{ matrix.test_task }} run: >-