From c392bec8cc03fe012f63e43145bcaaf83cf30fa1 Mon Sep 17 00:00:00 2001 From: Hiroshi SHIBATA Date: Fri, 29 Nov 2024 08:35:34 +0900 Subject: [PATCH] Use only -j option for test option --- .github/workflows/windows.yml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 62b8d088f4..c01e710e74 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -181,9 +181,6 @@ jobs: uses: ./.github/actions/launchable/setup with: os: windows-${{ matrix.vs < 2022 && '2019' || matrix.vs }} - test-task: test-all - # If we support a new test task, we need to change this test-opts. - test-opts: -j${{ env.TEST_JOBS || 4 }} --job-status=normal launchable-token: ${{ secrets.LAUNCHABLE_TOKEN }} builddir: build srcdir: src @@ -192,9 +189,7 @@ jobs: - run: nmake ${{ matrix.test_task || 'check' }} env: - RUBY_TESTOPTS: >- - -j${{ env.TEST_JOBS || 4 }} - --job-status=normal + RUBY_TESTOPTS: -j${{ env.TEST_JOBS || 4 }} timeout-minutes: 70 - uses: ./.github/actions/slack