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

ruby-changes:57118

From: Hiroshi <ko1@a...>
Date: Sat, 17 Aug 2019 13:27:29 +0900 (JST)
Subject: [ruby-changes:57118] Hiroshi SHIBATA: ea496e9fb2 (master): Added test check to ubuntu on GitHub Actions

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

From ea496e9fb2c930ac0c5ff8c12c4a10fac0ec3c7b Mon Sep 17 00:00:00 2001
From: Hiroshi SHIBATA <hsbt@r...>
Date: Sat, 17 Aug 2019 11:36:12 +0900
Subject: Added test check to ubuntu on GitHub Actions


diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml
index fe4eb61..38c904d 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: [ "test-bundler", "test-bundled-gems" ]
+        test_task: [ "check", "test-bundler", "test-bundled-gems" ]
       fail-fast: false
     steps:
       - name: Install libraries
@@ -46,6 +46,13 @@ jobs: https://github.com/ruby/ruby/blob/trunk/.github/workflows/ubuntu.yml#L46
         run: ./configure -C --disable-install-doc
       - run: make $JOBS
       # TODO: Remove `continue-on-error` once they become stable and also we have a notification for their failure.
+      - name: make check
+        run: make -s ${{ matrix.test_task }}
+        env:
+          TESTOPTS: "$JOBS -q --tty=no"
+          MSPECOPT: "-ff" # not using `-j` because sometimes `mspec -j` silently dies
+        if: matrix.test_task == 'check'
+        continue-on-error: true
       - name: make test-bundler/test-bundled-gems
         run: make -s ${{ matrix.test_task }}
         continue-on-error: true
-- 
cgit v0.10.2


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

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