summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2024-03-11 23:41:42 +0900
committerGitHub <noreply@github.com>2024-03-11 10:41:42 -0400
commita295eeba9d013ab3863a3e5e339e170332e9be9f (patch)
tree7a5d58675d283a48fd3015fec71112a619e5dbb1 /.github
parent9f31577987f0f83581a8283c3fc677fae225ee4f (diff)
Pass `RUN_OPTS` in YJIT macos test (#10214)
`RUN_OPTS` environment variable is set but not passed to the test task, unlike yjit-ubuntu.yml.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/yjit-macos.yml3
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/yjit-macos.yml b/.github/workflows/yjit-macos.yml
index 685dc495c7..61e5298575 100644
--- a/.github/workflows/yjit-macos.yml
+++ b/.github/workflows/yjit-macos.yml
@@ -113,8 +113,9 @@ jobs:
if: ${{ matrix.test_task == 'check' && matrix.skipped_tests }}
- name: make ${{ matrix.test_task }}
- run: |
+ run: >-
make -s ${{ matrix.test_task }} ${TESTS:+TESTS="$TESTS"}
+ RUN_OPTS="$RUN_OPTS"
timeout-minutes: 60
env:
RUBY_TESTOPTS: '-q --tty=no'