summaryrefslogtreecommitdiff
path: root/.github/workflows/bundled_gems.yml
diff options
context:
space:
mode:
author卜部昌平 <shyouhei@ruby-lang.org>2021-10-22 11:15:10 +0900
committer卜部昌平 <shyouhei@ruby-lang.org>2021-10-26 09:05:46 +0900
commit748688a63d8ab621d4b2ab91cbccb5cad2c7797c (patch)
tree1ffdad212980c049c97be4d7072eaf15eccc24c8 /.github/workflows/bundled_gems.yml
parent92ec010595bed29567fc08dd4d52d4c4518f0fd4 (diff)
.github: use GNUMAKEFLAGS instead of JOBS
A bit readable to me. See also https://github.com/ruby/ruby/pull/4880
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/5005
Diffstat (limited to '.github/workflows/bundled_gems.yml')
-rw-r--r--.github/workflows/bundled_gems.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/bundled_gems.yml b/.github/workflows/bundled_gems.yml
index d46c0704cd..265c7dc020 100644
--- a/.github/workflows/bundled_gems.yml
+++ b/.github/workflows/bundled_gems.yml
@@ -17,7 +17,7 @@ jobs:
- name: Set ENV
run: |
- echo "JOBS=-j$((1 + $(nproc --all)))" >> $GITHUB_ENV
+ echo "GNUMAKEFLAGS=-j$((1 + $(nproc --all)))" >> $GITHUB_ENV
- uses: actions/checkout@v2
@@ -42,12 +42,12 @@ jobs:
run: |
./autogen.sh
./configure -C --disable-install-doc
- make $JOBS
+ make
if: ${{ steps.diff.outcome == 'failure' }}
- name: Test bundled gems
run: |
- make $JOBS -s test-bundled-gems
+ make -s test-bundled-gems
timeout-minutes: 30
env:
RUBY_TESTOPTS: "-q --tty=no"