summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorHiroshi SHIBATA <hsbt@ruby-lang.org>2019-08-12 19:08:51 +0900
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2019-08-12 20:11:49 +0900
commit8d50bf40d9fc7015c0a8d52d9e4cf9efbf57ae3c (patch)
tree3e219776e6be63b57e82d67411aa164da4895c42 /.github
parent0fd0f74508e1b6d26605a85066e18a4d00a02d84 (diff)
Try to nmake test
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/windows.yml5
1 files changed, 5 insertions, 0 deletions
diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml
index 665d33a0e6..9428efc4f2 100644
--- a/.github/workflows/windows.yml
+++ b/.github/workflows/windows.yml
@@ -12,6 +12,7 @@ jobs:
matrix:
os: [windows-2016, windows-2019]
vs: [2017, 2019]
+ test_task: [test]
exclude:
- os: windows-2016
vs: 2019
@@ -42,3 +43,7 @@ jobs:
set YACC=win_bison
nmake up
nmake
+ - name: nmake test
+ run: |
+ call "C:\Program Files (x86)\Microsoft Visual Studio\${{ matrix.vs }}\Enterprise\VC\Auxiliary\Build\vcvars64.bat"
+ nmake ${{ matrix.test_task }}