Extract continue-on-error condition to the matrix [ci skip]

This commit is contained in:
Nobuyoshi Nakada 2024-01-28 12:00:26 +09:00
parent e018036d89
commit 3dde9c1b43
No known key found for this signature in database
GPG Key ID: 3582D74E1FEE4465
2 changed files with 3 additions and 1 deletions

View File

@ -119,6 +119,7 @@ jobs:
TESTS: ${{ matrix.test_task == 'check' && matrix.skipped_tests || '' }}
TEST_BUNDLED_GEMS_ALLOW_FAILURES: ''
PRECHECK_BUNDLED_GEMS: 'no'
continue-on-error: ${{ matrix.continue-on-test_task || false }}
- name: make skipped tests
run: |

View File

@ -109,6 +109,7 @@ jobs:
- test_task: 'yjit-bench'
configure: '--enable-yjit=dev'
yjit_bench_opts: '--yjit-stats'
continue-on-test_task: true
env:
GITPULLOPTIONS: --no-tags origin ${{ github.ref }}
@ -173,7 +174,7 @@ jobs:
PRECHECK_BUNDLED_GEMS: 'no'
SYNTAX_SUGGEST_TIMEOUT: '5'
YJIT_BINDGEN_DIFF_OPTS: '--exit-code'
continue-on-error: ${{ matrix.test_task == 'yjit-bench' }}
continue-on-error: ${{ matrix.continue-on-test_task || false }}
- name: Show ${{ github.event.pull_request.base.ref }} GitHub URL for yjit-bench comparison
run: echo "https://github.com/${BASE_REPO}/commit/${BASE_SHA}"