mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
[MSWin] Split nmake step
The workflow output grouping seems effective even in the middle of lines.
This commit is contained in:
parent
5eb54c495f
commit
30583bc947
1 changed files with 5 additions and 15 deletions
20
.github/workflows/windows.yml
vendored
20
.github/workflows/windows.yml
vendored
|
@ -90,30 +90,20 @@ jobs:
|
||||||
- name: Configure
|
- name: Configure
|
||||||
run: |
|
run: |
|
||||||
../src/win32/configure.bat --disable-install-doc --enable-bundled-libffi --with-opt-dir=C:/vcpkg/installed/x64-windows --with-openssl-dir="C:/Program Files/OpenSSL-Win64"
|
../src/win32/configure.bat --disable-install-doc --enable-bundled-libffi --with-opt-dir=C:/vcpkg/installed/x64-windows --with-openssl-dir="C:/Program Files/OpenSSL-Win64"
|
||||||
- name: nmake
|
- run: nmake incs
|
||||||
run: |
|
- run: nmake extract-extlibs
|
||||||
echo ^#^#[group]incs
|
- run: nmake
|
||||||
nmake incs
|
|
||||||
echo ^#^#[endgroup]
|
|
||||||
echo ^#^#[group]extract-extlibs
|
|
||||||
nmake extract-extlibs
|
|
||||||
echo ^#^#[endgroup]
|
|
||||||
nmake
|
|
||||||
env:
|
env:
|
||||||
YACC: win_bison
|
YACC: win_bison
|
||||||
- name: nmake test
|
- run: nmake test
|
||||||
timeout-minutes: 5
|
timeout-minutes: 5
|
||||||
run: |
|
|
||||||
nmake test
|
|
||||||
- name: nmake test-all
|
- name: nmake test-all
|
||||||
timeout-minutes: 60
|
timeout-minutes: 60
|
||||||
run: |
|
run: |
|
||||||
nmake test-all TESTOPTS="-j%NUMBER_OF_PROCESSORS% --job-status=normal"
|
nmake test-all TESTOPTS="-j%NUMBER_OF_PROCESSORS% --job-status=normal"
|
||||||
continue-on-error: ${{ matrix.continue-on-error || false }}
|
continue-on-error: ${{ matrix.continue-on-error || false }}
|
||||||
- name: nmake test-spec
|
- run: nmake test-spec
|
||||||
timeout-minutes: 10
|
timeout-minutes: 10
|
||||||
run: |
|
|
||||||
nmake test-spec
|
|
||||||
continue-on-error: ${{ matrix.continue-on-error || false }}
|
continue-on-error: ${{ matrix.continue-on-error || false }}
|
||||||
- uses: k0kubun/action-slack@v2.0.0
|
- uses: k0kubun/action-slack@v2.0.0
|
||||||
with:
|
with:
|
||||||
|
|
Loading…
Reference in a new issue