more on eliminating $make

This commit is contained in:
卜部昌平 2021-10-25 14:05:30 +09:00
parent b682f76339
commit b49ec78fd0
Notes: git 2021-10-26 09:06:10 +09:00

View File

@ -23,14 +23,14 @@ jobs:
with: with:
ruby-version: ${{ matrix.ruby }} ruby-version: ${{ matrix.ruby }}
bundler: none 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: sudo apt-get install build-essential autoconf bison
- run: ./autogen.sh - run: ./autogen.sh
- run: ./configure --disable-install-doc - run: ./configure --disable-install-doc
- run: $make common-srcs - run: make common-srcs
- run: $make incs - run: make incs
- run: $make all - run: make all
- run: $make test - run: make test
- uses: k0kubun/action-slack@v2.0.0 - uses: k0kubun/action-slack@v2.0.0
with: with:
payload: | payload: |