mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
[MinGW] Set job env vars at once
This commit is contained in:
parent
ac642df228
commit
5eb54c495f
1 changed files with 10 additions and 8 deletions
18
.github/workflows/mingw.yml
vendored
18
.github/workflows/mingw.yml
vendored
|
@ -56,6 +56,12 @@ jobs:
|
|||
setup-ruby-ref: MSP-Greg/ruby-setup-ruby/00-win-ucrt
|
||||
mingw: _upgrade_ gmp libffi libyaml openssl ragel readline gcc
|
||||
msys2: automake1.16 bison
|
||||
- name: set env
|
||||
run: |
|
||||
$build_jobs = [int](2 * $env:NUMBER_OF_PROCESSORS)
|
||||
$test_jobs = [int](1.5 * $env:NUMBER_OF_PROCESSORS)
|
||||
Write-Output "BUILD_JOBS=$build_jobs" >> $env:GITHUB_ENV
|
||||
Write-Output "TEST_JOBS=$test_jobs" >> $env:GITHUB_ENV
|
||||
- name: where check
|
||||
run: |
|
||||
# show where
|
||||
|
@ -88,19 +94,16 @@ jobs:
|
|||
|
||||
- name: update
|
||||
run: |
|
||||
$jobs = [int](2 * $env:NUMBER_OF_PROCESSORS)
|
||||
make -j $jobs incs
|
||||
make -j $env:BUILD_JOBS incs
|
||||
|
||||
- name: download gems
|
||||
run: |
|
||||
$jobs = [int](2 * $env:NUMBER_OF_PROCESSORS)
|
||||
make -j $jobs update-gems
|
||||
make -j $env:BUILD_JOBS update-gems
|
||||
|
||||
- name: make all
|
||||
timeout-minutes: 20
|
||||
run: |
|
||||
$jobs = [int](2 * $env:NUMBER_OF_PROCESSORS)
|
||||
make -j $jobs
|
||||
make -j $env:BUILD_JOBS
|
||||
|
||||
- run: make leaked-globals
|
||||
|
||||
|
@ -124,9 +127,8 @@ jobs:
|
|||
$PSDefaultParameterValues['*:Encoding'] = 'utf8'
|
||||
[Console]::OutputEncoding = [System.Text.Encoding]::GetEncoding("IBM437")
|
||||
[Console]::InputEncoding = [System.Text.Encoding]::GetEncoding("IBM437")
|
||||
$jobs = [int](1.5 * $env:NUMBER_OF_PROCESSORS)
|
||||
if ($env:BUNDLER_VERSION) { Remove-Item env:\BUNDLER_VERSION }
|
||||
make test-all TESTOPTS="-j $jobs --retry --job-status=normal --show-skip --timeout-scale=1.5"
|
||||
make test-all TESTOPTS="-j $env:TEST_JOBS --retry --job-status=normal --show-skip --timeout-scale=1.5"
|
||||
|
||||
- name: test-spec
|
||||
timeout-minutes: 10
|
||||
|
|
Loading…
Reference in a new issue