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

ruby-changes:58575

From: Nobuyoshi <ko1@a...>
Date: Tue, 5 Nov 2019 10:29:01 +0900 (JST)
Subject: [ruby-changes:58575] 1390d56ecf (master): Set $JOBS to Tests for parallel tests

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

From 1390d56ecfac2e430df94c4d4a60d8fa80d11166 Mon Sep 17 00:00:00 2001
From: Nobuyoshi Nakada <nobu@r...>
Date: Tue, 5 Nov 2019 10:28:44 +0900
Subject: Set $JOBS to Tests for parallel tests


diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml
index 22794f8..0053dcc 100644
--- a/.github/workflows/macos.yml
+++ b/.github/workflows/macos.yml
@@ -55,7 +55,7 @@ jobs: https://github.com/ruby/ruby/blob/trunk/.github/workflows/macos.yml#L55
       - name: Make
         run: make -C build $JOBS
       - name: Tests
-        run: make -C build -s ${{ matrix.test_task }}
+        run: make -C build $JOBS -s ${{ matrix.test_task }}
         env:
           MSPECOPT: "-ff" # not using `-j` because sometimes `mspec -j` silently dies
           RUBY_TESTOPTS: "-q --tty=no"
diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml
index 7db6b7a..a22ae7d 100644
--- a/.github/workflows/ubuntu.yml
+++ b/.github/workflows/ubuntu.yml
@@ -79,7 +79,7 @@ jobs: https://github.com/ruby/ruby/blob/trunk/.github/workflows/ubuntu.yml#L79
       - name: Make
         run: make -C build $JOBS
       - name: Tests
-        run: make -C build -s ${{ matrix.test_task }}
+        run: make -C build $JOBS -s ${{ matrix.test_task }}
         env:
           MSPECOPT: "-ff" # not using `-j` because sometimes `mspec -j` silently dies
           RUBY_TESTOPTS: "-q --tty=no"
-- 
cgit v0.10.2


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

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