Skip to content

Commit

Permalink
Do not fail CI when Launchable fails
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
k0kubun committed Mar 12, 2024
1 parent c3915a0 commit 97b5f35
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/macos.yml
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/ubuntu.yml
Expand Up @@ -115,6 +115,7 @@ jobs:
launchable-token: ${{ secrets.LAUNCHABLE_TOKEN }}
builddir: build
srcdir: src
continue-on-error: true

- name: make ${{ matrix.test_task }}
run: >-
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/yjit-macos.yml
Expand Up @@ -122,6 +122,7 @@ jobs:
launchable-token: ${{ secrets.LAUNCHABLE_TOKEN }}
builddir: build
srcdir: src
continue-on-error: true

- name: make ${{ matrix.test_task }}
run: >-
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/yjit-ubuntu.yml
Expand Up @@ -175,6 +175,7 @@ jobs:
launchable-token: ${{ secrets.LAUNCHABLE_TOKEN }}
builddir: build
srcdir: src
continue-on-error: true

- name: make ${{ matrix.test_task }}
run: >-
Expand Down

0 comments on commit 97b5f35

Please sign in to comment.