mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
appveyor.yml: refactor r62402
We have good feature to share common configuration between branches: https://www.appveyor.com/docs/branches/#sharing-common-configuration-between-branches Let's try this. By the way, the intention of r62402 was excluding PR notifications while it wasn't written in the commit message. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@62403 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
7da8fa1cb7
commit
8c8d298c88
1 changed files with 56 additions and 115 deletions
171
appveyor.yml
171
appveyor.yml
|
@ -1,61 +1,63 @@
|
||||||
|
---
|
||||||
|
shallow_clone: true
|
||||||
|
platform:
|
||||||
|
- x64
|
||||||
|
environment:
|
||||||
|
ruby_version: "24-%Platform%"
|
||||||
|
zlib_version: "1.2.11"
|
||||||
|
matrix:
|
||||||
|
- vs: "120"
|
||||||
|
install:
|
||||||
|
- chcp
|
||||||
|
- SET BITS=%Platform:x86=32%
|
||||||
|
- SET BITS=%BITS:x=%
|
||||||
|
- SET OPENSSL_DIR=c:\OpenSSL-Win%BITS%
|
||||||
|
- CALL SET vcvars=%%^VS%VS%COMNTOOLS^%%..\..\VC\vcvarsall.bat
|
||||||
|
- SET vcvars
|
||||||
|
- '"%vcvars%" %Platform:x64=amd64%'
|
||||||
|
- SET ruby_path=C:\Ruby%ruby_version:-x86=%
|
||||||
|
- SET PATH=\usr\local\bin;%ruby_path%\bin;%PATH%;C:\msys64\mingw64\bin;C:\msys64\usr\bin
|
||||||
|
- ruby --version
|
||||||
|
- 'cl'
|
||||||
|
- SET
|
||||||
|
- echo> Makefile srcdir=.
|
||||||
|
- echo>> Makefile MSC_VER=0
|
||||||
|
- echo>> Makefile RT=none
|
||||||
|
- echo>> Makefile RT_VER=0
|
||||||
|
- echo>> Makefile BUILTIN_ENCOBJS=nul
|
||||||
|
- type win32\Makefile.sub >> Makefile
|
||||||
|
- nmake %mflags% touch-unicode-files
|
||||||
|
- nmake %mflags% up incs UNICODE_FILES=.
|
||||||
|
- del Makefile
|
||||||
|
- mkdir \usr\local\bin
|
||||||
|
- mkdir \usr\local\include
|
||||||
|
- mkdir \usr\local\lib
|
||||||
|
- appveyor DownloadFile https://zlib.net/zlib%zlib_version:.=%.zip
|
||||||
|
- 7z x -o%APPVEYOR_BUILD_FOLDER%\ext\zlib zlib%zlib_version:.=%.zip
|
||||||
|
- for %%I in (%OPENSSL_DIR%\*.dll) do mklink /h \usr\local\bin\%%~nxI %%I
|
||||||
|
- mkdir %Platform%-mswin_%vs%
|
||||||
|
- ps: Get-ChildItem "win32" -Recurse | foreach {$_.Attributes = 'Readonly'}
|
||||||
|
- ps: Get-Item $env:Platform"-mswin_"$env:vs | foreach {$_.Attributes = 'Normal'}
|
||||||
|
build_script:
|
||||||
|
- cd %APPVEYOR_BUILD_FOLDER%
|
||||||
|
- cd %Platform%-mswin_%vs%
|
||||||
|
- ..\win32\configure.bat --without-ext=+,dbm,gdbm,readline --with-opt-dir=/usr/local --with-openssl-dir=%OPENSSL_DIR:\=/%
|
||||||
|
- nmake -l
|
||||||
|
- nmake install-nodoc
|
||||||
|
- \usr\bin\ruby -v -e "p :locale => Encoding.find('locale'), :filesystem => Encoding.find('filesystem')"
|
||||||
|
test_script:
|
||||||
|
- set /a JOBS=%NUMBER_OF_PROCESSORS%
|
||||||
|
- nmake -l "TESTOPTS=-v -q" btest
|
||||||
|
- nmake -l "TESTOPTS=-v -q" test-basic
|
||||||
|
- nmake -l "TESTOPTS=-q -j%JOBS%" test-all
|
||||||
|
- nmake -l test-spec
|
||||||
|
matrix:
|
||||||
|
fast_finish: true
|
||||||
|
for:
|
||||||
-
|
-
|
||||||
branches:
|
branches:
|
||||||
only:
|
only:
|
||||||
- trunk
|
- trunk
|
||||||
shallow_clone: true
|
|
||||||
platform:
|
|
||||||
- x64
|
|
||||||
environment:
|
|
||||||
ruby_version: "24-%Platform%"
|
|
||||||
zlib_version: "1.2.11"
|
|
||||||
matrix:
|
|
||||||
- vs: "120"
|
|
||||||
install:
|
|
||||||
- chcp
|
|
||||||
- SET BITS=%Platform:x86=32%
|
|
||||||
- SET BITS=%BITS:x=%
|
|
||||||
- SET OPENSSL_DIR=c:\OpenSSL-Win%BITS%
|
|
||||||
- CALL SET vcvars=%%^VS%VS%COMNTOOLS^%%..\..\VC\vcvarsall.bat
|
|
||||||
- SET vcvars
|
|
||||||
- '"%vcvars%" %Platform:x64=amd64%'
|
|
||||||
- SET ruby_path=C:\Ruby%ruby_version:-x86=%
|
|
||||||
- SET PATH=\usr\local\bin;%ruby_path%\bin;%PATH%;C:\msys64\mingw64\bin;C:\msys64\usr\bin
|
|
||||||
- ruby --version
|
|
||||||
- 'cl'
|
|
||||||
- SET
|
|
||||||
- echo> Makefile srcdir=.
|
|
||||||
- echo>> Makefile MSC_VER=0
|
|
||||||
- echo>> Makefile RT=none
|
|
||||||
- echo>> Makefile RT_VER=0
|
|
||||||
- echo>> Makefile BUILTIN_ENCOBJS=nul
|
|
||||||
- type win32\Makefile.sub >> Makefile
|
|
||||||
- nmake %mflags% touch-unicode-files
|
|
||||||
- nmake %mflags% up incs UNICODE_FILES=.
|
|
||||||
- del Makefile
|
|
||||||
- mkdir \usr\local\bin
|
|
||||||
- mkdir \usr\local\include
|
|
||||||
- mkdir \usr\local\lib
|
|
||||||
- appveyor DownloadFile https://zlib.net/zlib%zlib_version:.=%.zip
|
|
||||||
- 7z x -o%APPVEYOR_BUILD_FOLDER%\ext\zlib zlib%zlib_version:.=%.zip
|
|
||||||
- for %%I in (%OPENSSL_DIR%\*.dll) do mklink /h \usr\local\bin\%%~nxI %%I
|
|
||||||
- mkdir %Platform%-mswin_%vs%
|
|
||||||
- ps: Get-ChildItem "win32" -Recurse | foreach {$_.Attributes = 'Readonly'}
|
|
||||||
- ps: Get-Item $env:Platform"-mswin_"$env:vs | foreach {$_.Attributes = 'Normal'}
|
|
||||||
build_script:
|
|
||||||
- cd %APPVEYOR_BUILD_FOLDER%
|
|
||||||
- cd %Platform%-mswin_%vs%
|
|
||||||
- ..\win32\configure.bat --without-ext=+,dbm,gdbm,readline --with-opt-dir=/usr/local --with-openssl-dir=%OPENSSL_DIR:\=/%
|
|
||||||
- nmake -l
|
|
||||||
- nmake install-nodoc
|
|
||||||
- \usr\bin\ruby -v -e "p :locale => Encoding.find('locale'), :filesystem => Encoding.find('filesystem')"
|
|
||||||
test_script:
|
|
||||||
- set /a JOBS=%NUMBER_OF_PROCESSORS%
|
|
||||||
- nmake -l "TESTOPTS=-v -q" btest
|
|
||||||
- nmake -l "TESTOPTS=-v -q" test-basic
|
|
||||||
- nmake -l "TESTOPTS=-q -j%JOBS%" test-all
|
|
||||||
- nmake -l test-spec
|
|
||||||
matrix:
|
|
||||||
fast_finish: true
|
|
||||||
notifications:
|
notifications:
|
||||||
- provider: Slack
|
- provider: Slack
|
||||||
incoming_webhook:
|
incoming_webhook:
|
||||||
|
@ -63,64 +65,3 @@
|
||||||
on_build_success: false
|
on_build_success: false
|
||||||
on_build_failure: true
|
on_build_failure: true
|
||||||
on_build_status_changed: true
|
on_build_status_changed: true
|
||||||
|
|
||||||
# Just copy of above except "branches" and "notifications"
|
|
||||||
# We can't configure conditional notification: https://github.com/appveyor/ci/issues/272
|
|
||||||
-
|
|
||||||
branches:
|
|
||||||
except:
|
|
||||||
- trunk
|
|
||||||
shallow_clone: true
|
|
||||||
platform:
|
|
||||||
- x64
|
|
||||||
environment:
|
|
||||||
ruby_version: "24-%Platform%"
|
|
||||||
zlib_version: "1.2.11"
|
|
||||||
matrix:
|
|
||||||
- vs: "120"
|
|
||||||
install:
|
|
||||||
- chcp
|
|
||||||
- SET BITS=%Platform:x86=32%
|
|
||||||
- SET BITS=%BITS:x=%
|
|
||||||
- SET OPENSSL_DIR=c:\OpenSSL-Win%BITS%
|
|
||||||
- CALL SET vcvars=%%^VS%VS%COMNTOOLS^%%..\..\VC\vcvarsall.bat
|
|
||||||
- SET vcvars
|
|
||||||
- '"%vcvars%" %Platform:x64=amd64%'
|
|
||||||
- SET ruby_path=C:\Ruby%ruby_version:-x86=%
|
|
||||||
- SET PATH=\usr\local\bin;%ruby_path%\bin;%PATH%;C:\msys64\mingw64\bin;C:\msys64\usr\bin
|
|
||||||
- ruby --version
|
|
||||||
- 'cl'
|
|
||||||
- SET
|
|
||||||
- echo> Makefile srcdir=.
|
|
||||||
- echo>> Makefile MSC_VER=0
|
|
||||||
- echo>> Makefile RT=none
|
|
||||||
- echo>> Makefile RT_VER=0
|
|
||||||
- echo>> Makefile BUILTIN_ENCOBJS=nul
|
|
||||||
- type win32\Makefile.sub >> Makefile
|
|
||||||
- nmake %mflags% touch-unicode-files
|
|
||||||
- nmake %mflags% up incs UNICODE_FILES=.
|
|
||||||
- del Makefile
|
|
||||||
- mkdir \usr\local\bin
|
|
||||||
- mkdir \usr\local\include
|
|
||||||
- mkdir \usr\local\lib
|
|
||||||
- appveyor DownloadFile https://zlib.net/zlib%zlib_version:.=%.zip
|
|
||||||
- 7z x -o%APPVEYOR_BUILD_FOLDER%\ext\zlib zlib%zlib_version:.=%.zip
|
|
||||||
- for %%I in (%OPENSSL_DIR%\*.dll) do mklink /h \usr\local\bin\%%~nxI %%I
|
|
||||||
- mkdir %Platform%-mswin_%vs%
|
|
||||||
- ps: Get-ChildItem "win32" -Recurse | foreach {$_.Attributes = 'Readonly'}
|
|
||||||
- ps: Get-Item $env:Platform"-mswin_"$env:vs | foreach {$_.Attributes = 'Normal'}
|
|
||||||
build_script:
|
|
||||||
- cd %APPVEYOR_BUILD_FOLDER%
|
|
||||||
- cd %Platform%-mswin_%vs%
|
|
||||||
- ..\win32\configure.bat --without-ext=+,dbm,gdbm,readline --with-opt-dir=/usr/local --with-openssl-dir=%OPENSSL_DIR:\=/%
|
|
||||||
- nmake -l
|
|
||||||
- nmake install-nodoc
|
|
||||||
- \usr\bin\ruby -v -e "p :locale => Encoding.find('locale'), :filesystem => Encoding.find('filesystem')"
|
|
||||||
test_script:
|
|
||||||
- set /a JOBS=%NUMBER_OF_PROCESSORS%
|
|
||||||
- nmake -l "TESTOPTS=-v -q" btest
|
|
||||||
- nmake -l "TESTOPTS=-v -q" test-basic
|
|
||||||
- nmake -l "TESTOPTS=-q -j%JOBS%" test-all
|
|
||||||
- nmake -l test-spec
|
|
||||||
matrix:
|
|
||||||
fast_finish: true
|
|
||||||
|
|
Loading…
Reference in a new issue