[前][次][番号順一覧][スレッド一覧]

ruby-changes:72423

From: Nobuyoshi <ko1@a...>
Date: Tue, 5 Jul 2022 11:34:45 +0900 (JST)
Subject: [ruby-changes:72423] b5f871888e (master): CI: skip objspace test on MinGW for now

https://git.ruby-lang.org/ruby.git/commit/?id=b5f871888e

From b5f871888eea0c4436cfe40eb44a1502661bd148 Mon Sep 17 00:00:00 2001
From: Nobuyoshi Nakada <nobu@r...>
Date: Mon, 4 Jul 2022 12:21:30 +0900
Subject: CI: skip objspace test on MinGW for now

---
 .github/workflows/mingw.yml | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

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: https://github.com/ruby/ruby/blob/trunk/.github/workflows/mingw.yml#L38
           - 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: https://github.com/ruby/ruby/blob/trunk/.github/workflows/mingw.yml#L137
           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/')}}
 
-- 
cgit v1.2.1


--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]