mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
[Windows CI] Group nmake step
This commit is contained in:
parent
fbdd1c6a79
commit
8a754bc5c9
1 changed files with 7 additions and 3 deletions
10
.github/workflows/windows.yml
vendored
10
.github/workflows/windows.yml
vendored
|
@ -63,15 +63,19 @@ jobs:
|
||||||
- name: Configure
|
- name: Configure
|
||||||
run: |
|
run: |
|
||||||
call %VCVARS%
|
call %VCVARS%
|
||||||
..\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
|
- name: nmake
|
||||||
run: |
|
run: |
|
||||||
call %VCVARS%
|
call %VCVARS%
|
||||||
set YACC=win_bison
|
echo ^#^#[group]incs
|
||||||
echo on
|
|
||||||
nmake incs
|
nmake incs
|
||||||
|
echo ^#^#[endgroup]
|
||||||
|
echo ^#^#[group]extract-extlibs
|
||||||
nmake extract-extlibs
|
nmake extract-extlibs
|
||||||
|
echo ^#^#[endgroup]
|
||||||
nmake
|
nmake
|
||||||
|
env:
|
||||||
|
YACC: win_bison
|
||||||
- name: nmake test
|
- name: nmake test
|
||||||
timeout-minutes: 5
|
timeout-minutes: 5
|
||||||
run: |
|
run: |
|
||||||
|
|
Loading…
Reference in a new issue