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

ruby-changes:69450

From: =E5=8D=9C=E9=83=A8=E6=98=8C=E5=B9=B3 <ko1@a...>
Date: Tue, 26 Oct 2021 09:06:03 +0900 (JST)
Subject: [ruby-changes:69450] b49ec78fd0 (master): more on eliminating $make

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

From b49ec78fd02836d4db4807fcdc86886138927c70 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E5=8D=9C=E9=83=A8=E6=98=8C=E5=B9=B3?=
 <shyouhei@r...>
Date: Mon, 25 Oct 2021 14:05:30 +0900
Subject: more on eliminating $make

---
 .github/workflows/baseruby.yml | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/.github/workflows/baseruby.yml b/.github/workflows/baseruby.yml
index 788ca8f474f..83e6ca03b08 100644
--- a/.github/workflows/baseruby.yml
+++ b/.github/workflows/baseruby.yml
@@ -23,14 +23,14 @@ jobs: https://github.com/ruby/ruby/blob/trunk/.github/workflows/baseruby.yml#L23
         with:
           ruby-version: ${{ matrix.ruby }}
           bundler: none
-      - run: echo "make=make -sj$((1 + $(nproc --all)))" >> $GITHUB_ENV
+      - run: echo "GNUMAKEFLAGS=-j$((1 + $(nproc --all)))" >> $GITHUB_ENV
       - run: sudo apt-get install build-essential autoconf bison
       - run: ./autogen.sh
       - run: ./configure --disable-install-doc
-      - run: $make common-srcs
-      - run: $make incs
-      - run: $make all
-      - run: $make test
+      - run: make common-srcs
+      - run: make incs
+      - run: make all
+      - run: make test
       - uses: k0kubun/action-slack@v...
         with:
           payload: |
-- 
cgit v1.2.1


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

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