mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Add extract-gems to GitHub Actions CI
This commit is contained in:
parent
cf14592872
commit
2eb4afb10b
Notes:
git
2019-11-30 16:45:18 +09:00
3 changed files with 6 additions and 0 deletions
2
.github/workflows/macos.yml
vendored
2
.github/workflows/macos.yml
vendored
|
@ -55,6 +55,8 @@ jobs:
|
|||
../src/configure -C --disable-install-doc --with-openssl-dir=$(brew --prefix openssl@1.1) --with-readline-dir=$(brew --prefix readline)
|
||||
- name: Make
|
||||
run: make -C build $JOBS
|
||||
- name: Extract gems
|
||||
run: make -C build extract-gems
|
||||
- name: Tests
|
||||
run: make -C build $JOBS -s ${{ matrix.test_task }}
|
||||
env:
|
||||
|
|
2
.github/workflows/ubuntu.yml
vendored
2
.github/workflows/ubuntu.yml
vendored
|
@ -84,6 +84,8 @@ jobs:
|
|||
../src/configure -C --disable-install-doc
|
||||
- name: Make
|
||||
run: make -C build $JOBS
|
||||
- name: Extract gems
|
||||
run: make -C build extract-gems
|
||||
- name: Tests
|
||||
run: make -C build $JOBS -s ${{ matrix.test_task }}
|
||||
env:
|
||||
|
|
2
.github/workflows/windows.yml
vendored
2
.github/workflows/windows.yml
vendored
|
@ -63,7 +63,9 @@ jobs:
|
|||
call "C:\Program Files (x86)\Microsoft Visual Studio\${{ matrix.vs }}\Enterprise\VC\Auxiliary\Build\vcvars64.bat"
|
||||
set YACC=win_bison
|
||||
cd build
|
||||
echo on
|
||||
nmake up
|
||||
nmake extract-gems
|
||||
nmake
|
||||
shell: cmd
|
||||
- name: nmake test
|
||||
|
|
Loading…
Reference in a new issue