appveyor.yml: enable exam on AppVeyor

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59038 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2017-06-08 01:19:44 +00:00
parent 64ca4137a7
commit 4ea23fb727

View File

@ -8,6 +8,7 @@ environment:
matrix: matrix:
- vs: "120" - vs: "120"
install: install:
- chcp
- SET BITS=%Platform:x86=32% - SET BITS=%Platform:x86=32%
- SET BITS=%BITS:x=% - SET BITS=%BITS:x=%
- SET OPENSSL_DIR=c:\OpenSSL-Win%BITS% - SET OPENSSL_DIR=c:\OpenSSL-Win%BITS%
@ -43,8 +44,11 @@ build_script:
- ..\win32\configure.bat --without-ext=+,dbm,gdbm,readline --with-opt-dir=/usr/local --with-openssl-dir=%OPENSSL_DIR:\=/% - ..\win32\configure.bat --without-ext=+,dbm,gdbm,readline --with-opt-dir=/usr/local --with-openssl-dir=%OPENSSL_DIR:\=/%
- nmake -l - nmake -l
- nmake install-nodoc - nmake install-nodoc
- set /a JOBS=2*%NUMBER_OF_PROCESSORS%
test_script: test_script:
- nmake -l "TESTOPTS=-v -q" btest - nmake -l "TESTOPTS=-v -q" btest
- nmake -l "TESTOPTS=-v -q" test-basic - nmake -l "TESTOPTS=-v -q" test-basic
- nmake -l "TESTOPTS=-q -j%JOBS%" test-all
- nmake -l test-spec
matrix: matrix:
fast_finish: true fast_finish: true