mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
[MinGW] Pass -j option via environment variables
This commit is contained in:
parent
6295e348a9
commit
5ebda74ae1
1 changed files with 6 additions and 5 deletions
11
.github/workflows/mingw.yml
vendored
11
.github/workflows/mingw.yml
vendored
|
@ -60,7 +60,7 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
$build_jobs = [int](2 * $env:NUMBER_OF_PROCESSORS)
|
$build_jobs = [int](2 * $env:NUMBER_OF_PROCESSORS)
|
||||||
$test_jobs = [int](1.5 * $env:NUMBER_OF_PROCESSORS)
|
$test_jobs = [int](1.5 * $env:NUMBER_OF_PROCESSORS)
|
||||||
Write-Output "BUILD_JOBS=$build_jobs" >> $env:GITHUB_ENV
|
Write-Output "GNUMAKEFLAGS=-j$build_jobs" >> $env:GITHUB_ENV
|
||||||
Write-Output "TEST_JOBS=$test_jobs" >> $env:GITHUB_ENV
|
Write-Output "TEST_JOBS=$test_jobs" >> $env:GITHUB_ENV
|
||||||
- name: where check
|
- name: where check
|
||||||
run: |
|
run: |
|
||||||
|
@ -89,16 +89,16 @@ jobs:
|
||||||
|
|
||||||
- name: update
|
- name: update
|
||||||
run: |
|
run: |
|
||||||
make -j $env:BUILD_JOBS incs
|
make incs
|
||||||
|
|
||||||
- name: download gems
|
- name: download gems
|
||||||
run: |
|
run: |
|
||||||
make -j $env:BUILD_JOBS update-gems
|
make update-gems
|
||||||
|
|
||||||
- name: make all
|
- name: make all
|
||||||
timeout-minutes: 20
|
timeout-minutes: 20
|
||||||
run: |
|
run: |
|
||||||
make -j $env:BUILD_JOBS
|
make
|
||||||
|
|
||||||
- run: make leaked-globals
|
- run: make leaked-globals
|
||||||
|
|
||||||
|
@ -116,8 +116,9 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
# Actions uses UTF8, causes test failures, similar to normal OS setup
|
# Actions uses UTF8, causes test failures, similar to normal OS setup
|
||||||
chcp.com 437
|
chcp.com 437
|
||||||
make test-all TESTOPTS="-j $env:TEST_JOBS --retry --job-status=normal --show-skip --timeout-scale=1.5"
|
make test-all
|
||||||
env:
|
env:
|
||||||
|
RUBY_TESTOPTS: -j${{env.TEST_JOBS}} --retry --job-status=normal --show-skip --timeout-scale=1.5
|
||||||
BUNDLER_VERSION:
|
BUNDLER_VERSION:
|
||||||
|
|
||||||
- name: test-spec
|
- name: test-spec
|
||||||
|
|
Loading…
Reference in a new issue