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?= Date: Mon, 25 Oct 2021 14:05:30 +0900 Subject: [PATCH] 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 788ca8f474..83e6ca03b0 100644 --- a/.github/workflows/baseruby.yml +++ b/.github/workflows/baseruby.yml @@ -23,14 +23,14 @@ jobs: 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@v2.0.0 with: payload: |