Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

.github/workflows/compilers.yml: Use GNUMAKEFLAGS. #4880

Merged
merged 1 commit into from Sep 23, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
20 changes: 10 additions & 10 deletions .github/workflows/compilers.yml
Expand Up @@ -181,7 +181,7 @@ jobs:
- name: setenv
run: |
echo "${{ matrix.entry.key }}=${{ matrix.entry.value }}" >> $GITHUB_ENV
echo "make=make -sj$((1 + $(nproc --all)))" >> $GITHUB_ENV
echo "GNUMAKEFLAGS=-sj$((1 + $(nproc --all)))" >> $GITHUB_ENV
- uses: actions/checkout@v2
with:
path: src
Expand All @@ -192,20 +192,20 @@ jobs:
../src/configure -C ${default_configure} ${append_configure}
${{ matrix.entry.key == 'crosshost' && '--host="${crosshost}"' || '--with-gcc="${default_cc} ${append_cc}"' }}
${{ matrix.entry.shared || '--enable-shared' }}
- run: $make extract-extlibs
- run: $make incs
- run: $make
- run: $make leaked-globals
- run: $make test
- run: $make install
- run: make extract-extlibs
- run: make incs
- run: make
- run: make leaked-globals
- run: make test
- run: make install
if: ${{ matrix.entry.check }}
- run: /usr/local/bin/gem install --no-doc timezone tzinfo
if: ${{ matrix.entry.check }}
- run: $make test-tool
- run: make test-tool
if: ${{ matrix.entry.check }}
- run: $make test-all TESTS='-- ruby -ext-'
- run: make test-all TESTS='-- ruby -ext-'
if: ${{ matrix.entry.check }}
- run: $make test-spec
- run: make test-spec
if: ${{ matrix.entry.check }}

- uses: k0kubun/action-slack@v2.0.0
Expand Down