mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
d4b6198d8f
because --depth=1 may randomly break checkout: https://dev.azure.com/rubylang/ruby/_build/results?buildId=208&view=logs&jobId=7ded14dc-7a77-59da-f40a-71e137ad96c0&taskId=2045950f-1dcd-54a4-4c23-fae2521239c1&lineStart=1554&lineEnd=1555&colStart=1&colEnd=1 git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@67280 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
145 lines
4 KiB
YAML
145 lines
4 KiB
YAML
pr: none # comment out this line if you need to test this file on PR
|
|
jobs:
|
|
- job: Linux
|
|
pool:
|
|
vmImage: 'ubuntu-16.04'
|
|
strategy:
|
|
matrix:
|
|
bundled_gems:
|
|
task: test-bundled-gems
|
|
bundler:
|
|
task: test-bundler
|
|
steps:
|
|
- task: UseRubyVersion@0
|
|
inputs:
|
|
versionSpec: '2.5.1'
|
|
- script: sudo apt update -qy && sudo apt-get build-dep ruby2.3
|
|
- checkout: self
|
|
fetchDepth: 10
|
|
- script: |
|
|
autoconf
|
|
./configure
|
|
make
|
|
displayName: 'make'
|
|
- script: |
|
|
TRAVIS=1 make $(task)
|
|
displayName: "test"
|
|
continueOnError: true # test-bundled-gems is failing on trunk by power_assert now. TODO: remove this once it gets green
|
|
|
|
- job: macOS
|
|
pool:
|
|
vmImage: 'macos-10.13'
|
|
strategy:
|
|
matrix:
|
|
# test:
|
|
# task: test test-all
|
|
# spec:
|
|
# task: test-spec
|
|
bundled_gems:
|
|
task: test-bundled-gems
|
|
bundler:
|
|
task: test-bundler
|
|
steps:
|
|
- script: brew update && brew install autoconf bison openssl
|
|
- checkout: self
|
|
fetchDepth: 10
|
|
- script: |
|
|
autoconf
|
|
./configure --with-openssl-dir=/usr/local/opt/openssl
|
|
make
|
|
displayName: 'make'
|
|
- script: |
|
|
make $(task)
|
|
displayName: "test"
|
|
continueOnError: true # test-bundled-gems is failing on trunk by power_assert now. TODO: remove this once it gets green
|
|
|
|
# - job: vs2015
|
|
# pool:
|
|
# vmImage: "vs2015-win2012r2"
|
|
# strategy:
|
|
# matrix:
|
|
# test:
|
|
# task: test test-all
|
|
# spec:
|
|
# task: test-spec
|
|
# bundled_gems:
|
|
# task: test-bundled-gems
|
|
# bundler:
|
|
# task: test-bundler
|
|
# steps:
|
|
# - script: vcpkg --triplet x64-windows install openssl readline zlib
|
|
# - script: |
|
|
# call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\bin\x86_amd64\vcvarsx86_amd64.bat"
|
|
# cinst winflexbison
|
|
# win32/configure.bat --without-ext=+,dbm,gdbm --enable-bundled-libffi --with-opt-dir=C:/vcpkg/installed/x64-windows
|
|
# displayName: 'configure'
|
|
# - script: |
|
|
# call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\bin\x86_amd64\vcvarsx86_amd64.bat"
|
|
# set YACC=win_bison
|
|
# nmake up
|
|
# nmake
|
|
# set TRAVIS=1
|
|
# nmake $(task)
|
|
# displayName: "nmake"
|
|
|
|
- job: vs2017
|
|
pool:
|
|
vmImage: 'vs2017-win2016'
|
|
# strategy:
|
|
# matrix:
|
|
# test:
|
|
# task: test test-all
|
|
# spec:
|
|
# task: test-spec
|
|
# bundled_gems:
|
|
# task: test-bundled-gems
|
|
# bundler:
|
|
# task: test-bundler
|
|
steps:
|
|
- script: vcpkg --triplet x64-windows install openssl readline zlib
|
|
- checkout: self
|
|
fetchDepth: 10
|
|
- script: |
|
|
call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Auxiliary\Build\vcvars64.bat"
|
|
cinst winflexbison
|
|
win32/configure.bat --without-ext=+,dbm,gdbm --enable-bundled-libffi --with-opt-dir=C:/vcpkg/installed/x64-windows
|
|
displayName: 'configure'
|
|
- script: |
|
|
call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Auxiliary\Build\vcvars64.bat"
|
|
set YACC=win_bison
|
|
nmake up
|
|
nmake
|
|
# set TRAVIS=1
|
|
# nmake $(task)
|
|
displayName: "nmake"
|
|
|
|
- job: vs2019
|
|
pool:
|
|
vmImage: "windows-2019"
|
|
# strategy:
|
|
# matrix:
|
|
# test:
|
|
# task: test test-all
|
|
# spec:
|
|
# task: test-spec
|
|
# bundled_gems:
|
|
# task: test-bundled-gems
|
|
# bundler:
|
|
# task: test-bundler
|
|
steps:
|
|
# - script: vcpkg --triplet x64-windows install openssl readline zlib
|
|
- checkout: self
|
|
fetchDepth: 10
|
|
- script: |
|
|
call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Preview\VC\Auxiliary\Build\vcvars64.bat"
|
|
cinst winflexbison
|
|
win32/configure.bat --without-ext=+,dbm,gdbm --enable-bundled-libffi --with-opt-dir=C:/vcpkg/installed/x64-windows
|
|
displayName: 'configure'
|
|
- script: |
|
|
call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Preview\VC\Auxiliary\Build\vcvars64.bat"
|
|
set YACC=win_bison
|
|
nmake up
|
|
nmake
|
|
# set TRAVIS=1
|
|
# nmake $(task)
|
|
displayName: "nmake"
|