This commit is contained in:
Hiroshi SHIBATA 2019-08-12 18:33:22 +09:00
Родитель 981f0be6ff
Коммит 040bf4c0a6
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: F9CF13417264FAC2
1 изменённых файлов: 35 добавлений и 0 удалений

35
.github/workflows/windows-2019.yml поставляемый Normal file
Просмотреть файл

@ -0,0 +1,35 @@
name: windows-2019
on:
push:
branches:
- master
pull_request:
branches:
- '*'
jobs:
latest:
runs-on: windows-2019
steps:
- name: Install libraries with vcpkg
run: |
vcpkg --triplet x64-windows install %dependencies% || (
sleep 4 && vcpkg --triplet x64-windows install %dependencies%
) || (
sleep 25 && vcpkg --triplet x64-windows install %dependencies%
)
env:
dependencies: openssl readline zlib
- name: Install libraries with chocolatey
run: choco install winflexbison3
- name: Checkout # not using actions/checkout because it's unstable.
run: git clone --depth=50 https://github.com/ruby/ruby .
- name: configure
run: |
call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build\vcvars64.bat"
win32/configure.bat --without-ext=+,dbm,gdbm --enable-bundled-libffi --with-opt-dir=C:/vcpkg/installed/x64-windows
- name: nmake
run: |
call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build\vcvars64.bat"
set YACC=win_bison
nmake up
nmake