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

ruby-changes:56940

From: Hiroshi <ko1@a...>
Date: Mon, 12 Aug 2019 13:16:42 +0900 (JST)
Subject: [ruby-changes:56940] Hiroshi SHIBATA: cfb192a7b9 (master): Added test-bundled-gems to GitHub Actions

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

From cfb192a7b9b00c479abbbbe35d396cc5295285e5 Mon Sep 17 00:00:00 2001
From: Hiroshi SHIBATA <hsbt@r...>
Date: Sun, 11 Aug 2019 19:33:03 +0900
Subject: Added test-bundled-gems to GitHub Actions


diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml
index 5e84bdc..c893340 100644
--- a/.github/workflows/macos.yml
+++ b/.github/workflows/macos.yml
@@ -11,7 +11,7 @@ jobs: https://github.com/ruby/ruby/blob/trunk/.github/workflows/macos.yml#L11
     runs-on: macos-latest
     strategy:
       matrix:
-        test_task: [ "check", "test-bundler" ]
+        test_task: [ "check", "test-bundler", "test-bundled-gems" ]
     steps:
       - name: Disable Firewall
         run: |
@@ -32,7 +32,7 @@ jobs: https://github.com/ruby/ruby/blob/trunk/.github/workflows/macos.yml#L32
       - name: configure
         run: ./configure -C --disable-install-doc --with-openssl-dir=$(brew --prefix openssl) --with-readline-dir=$(brew --prefix readline)
       - run: make $JOBS
-      - name: make check/test-bundler
+      - name: make check/test-bundler/test-bundled-gems
         run: make -s ${{ matrix.test_task }}
         env:
           TESTOPTS: "$JOBS -q --tty=no"
diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml
index 6606291..b5241f4 100644
--- a/.github/workflows/ubuntu.yml
+++ b/.github/workflows/ubuntu.yml
@@ -11,7 +11,7 @@ jobs: https://github.com/ruby/ruby/blob/trunk/.github/workflows/ubuntu.yml#L11
     runs-on: ubuntu-latest
     strategy:
       matrix:
-        test_task: [ "check", "test-bundler" ]
+        test_task: [ "check", "test-bundler", "test-bundled-gems" ]
     steps:
       - name: Install libraries
         run: |
@@ -31,7 +31,7 @@ jobs: https://github.com/ruby/ruby/blob/trunk/.github/workflows/ubuntu.yml#L31
       - name: configure
         run: ./configure -C --disable-install-doc
       - run: make $JOBS
-      - name: make check/test-bundler
+      - name: make check/test-bundler/test-bundled-gems
         run: make -s ${{ matrix.test_task }}
         env:
           TESTOPTS: "$JOBS -q --tty=no"
-- 
cgit v0.10.2


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

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