summaryrefslogtreecommitdiff
path: root/.github/workflows/mingw.yml
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2022-07-04 12:21:30 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2022-07-05 11:33:47 +0900
commitb5f871888eea0c4436cfe40eb44a1502661bd148 (patch)
tree436daf506975f5432163446cc3ce313d9935f84d /.github/workflows/mingw.yml
parented76ba35dd7625819b428a7c6f53c89ae55449a9 (diff)
CI: skip objspace test on MinGW for now
Diffstat (limited to '.github/workflows/mingw.yml')
-rw-r--r--.github/workflows/mingw.yml6
1 files changed, 5 insertions, 1 deletions
diff --git a/.github/workflows/mingw.yml b/.github/workflows/mingw.yml
index a5421343fc..002936e330 100644
--- a/.github/workflows/mingw.yml
+++ b/.github/workflows/mingw.yml
@@ -38,9 +38,11 @@ jobs:
- msystem: "MINGW64"
base_ruby: 2.6
test_task: "check"
+ test-all-opts: "--exclude=/objspace/"
- msystem: "UCRT64"
base_ruby: head
test_task: "check"
+ test-all-opts: "--exclude=/objspace/"
fail-fast: false
if: ${{ !contains(github.event.head_commit.message, '[DOC]') && !contains(github.event.pull_request.labels.*.name, 'Documentation') }}
steps:
@@ -135,7 +137,9 @@ jobs:
chcp.com 437
make ${{ StartsWith(matrix.test_task, 'test/') && matrix.test_task || 'test-all' }}
env:
- RUBY_TESTOPTS: -j${{env.TEST_JOBS}} --retry --job-status=normal --show-skip --timeout-scale=1.5
+ RUBY_TESTOPTS: >-
+ -j${{env.TEST_JOBS}} --retry --job-status=normal --show-skip --timeout-scale=1.5
+ ${{ matrix.test-all-opts }}
BUNDLER_VERSION:
if: ${{matrix.test_task == 'check' || matrix.test_task == 'test-all' || StartsWith(matrix.test_task, 'test/')}}