diff options
| -rw-r--r-- | .github/workflows/zjit-macos.yml | 5 | ||||
| -rw-r--r-- | .github/workflows/zjit-ubuntu.yml | 6 |
2 files changed, 11 insertions, 0 deletions
diff --git a/.github/workflows/zjit-macos.yml b/.github/workflows/zjit-macos.yml index a5439384e0..b47b09ae49 100644 --- a/.github/workflows/zjit-macos.yml +++ b/.github/workflows/zjit-macos.yml @@ -91,6 +91,11 @@ jobs: # Set fetch-depth: 10 so that Launchable can receive commits information. fetch-depth: 10 + - uses: taiki-e/install-action@v2 + with: + tool: nextest@0.9 + if: ${{ matrix.test_task == 'test-zjit' }} + - name: Run configure run: ../src/configure -C --disable-install-doc ${{ matrix.configure }} diff --git a/.github/workflows/zjit-ubuntu.yml b/.github/workflows/zjit-ubuntu.yml index 0dafdc6c15..8e078b5318 100644 --- a/.github/workflows/zjit-ubuntu.yml +++ b/.github/workflows/zjit-ubuntu.yml @@ -94,6 +94,12 @@ jobs: ruby-version: '3.0' bundler: none + - uses: taiki-e/install-action@v2 + with: + tool: nextest@0.9 + if: ${{ matrix.test_task == 'test-zjit' }} + + - uses: ./.github/actions/setup/directories with: srcdir: src |
