mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
GNUMAKEFLAGS is too new for mac
It is relatively well known that mac does not update its command line tools, and make is no exception. They ship GNU make 3.x, which didn't yet implemented GNUMAKEFLAGS. Resort to MAKEFLAGS there.
This commit is contained in:
parent
748688a63d
commit
b682f76339
Notes:
git
2021-10-26 09:06:11 +09:00
2 changed files with 2 additions and 2 deletions
2
.github/workflows/macos.yml
vendored
2
.github/workflows/macos.yml
vendored
|
@ -27,7 +27,7 @@ jobs:
|
|||
working-directory: src
|
||||
- name: Set ENV
|
||||
run: |
|
||||
echo "GNUMAKEFLAGS=-j$((1 + $(sysctl -n hw.activecpu)))" >> $GITHUB_ENV
|
||||
echo "MAKEFLAGS=-j$((1 + $(sysctl -n hw.activecpu)))" >> $GITHUB_ENV
|
||||
- run: ./autogen.sh
|
||||
working-directory: src
|
||||
- name: Run configure
|
||||
|
|
2
.github/workflows/yjit-macos.yml
vendored
2
.github/workflows/yjit-macos.yml
vendored
|
@ -34,7 +34,7 @@ jobs:
|
|||
working-directory: src
|
||||
- name: Set ENV
|
||||
run: |
|
||||
echo "GNUMAKEFLAGS=-j$((1 + $(sysctl -n hw.activecpu)))" >> $GITHUB_ENV
|
||||
echo "MAKEFLAGS=-j$((1 + $(sysctl -n hw.activecpu)))" >> $GITHUB_ENV
|
||||
- run: ./autogen.sh
|
||||
working-directory: src
|
||||
- name: Run configure
|
||||
|
|
Loading…
Reference in a new issue