2017-05-07 08:04:49 -04:00
|
|
|
---
|
|
|
|
version: "{build}"
|
|
|
|
clone_depth: 5
|
2017-09-28 05:19:59 -04:00
|
|
|
init:
|
|
|
|
# To avoid duplicated executables in PATH, see https://github.com/ruby/spec/pull/468
|
|
|
|
- set PATH=C:\ruby%RUBY_VERSION%\bin;C:\Program Files\7-Zip;C:\Program Files\AppVeyor\BuildAgent;C:\Program Files\Git\cmd;C:\Windows\system32;C:\Program Files;C:\Windows
|
|
|
|
# Loads trunk build and updates MSYS2 / MinGW to most recent gcc compiler
|
|
|
|
- if %ruby_version%==_trunk (
|
|
|
|
appveyor DownloadFile https://ci.appveyor.com/api/projects/MSP-Greg/ruby-loco/artifacts/ruby_trunk.7z -FileName C:\ruby_trunk.7z &
|
|
|
|
7z x C:\ruby_trunk.7z -oC:\ruby_trunk & C:\ruby_trunk\trunk_msys2.cmd)
|
2017-05-07 08:04:49 -04:00
|
|
|
environment:
|
|
|
|
matrix:
|
|
|
|
- RUBY_VERSION: 23-x64
|
2017-09-28 05:19:59 -04:00
|
|
|
- RUBY_VERSION: 24-x64
|
|
|
|
- RUBY_VERSION: _trunk # So the folder name is ruby_trunk
|
2017-05-07 08:04:49 -04:00
|
|
|
install:
|
|
|
|
- git clone https://github.com/ruby/mspec.git ../mspec
|
|
|
|
build: off
|
|
|
|
test_script:
|
|
|
|
- SET CHECK_LEAKS=true
|
2017-09-28 05:19:59 -04:00
|
|
|
- ../mspec/bin/mspec -rdevkit -ff
|
|
|
|
on_finish:
|
|
|
|
- ruby -v
|
|
|
|
matrix:
|
|
|
|
allow_failures:
|
|
|
|
- ruby_version: _trunk
|
2017-05-07 08:04:49 -04:00
|
|
|
branches:
|
|
|
|
only:
|
|
|
|
- master
|
|
|
|
- /^try/
|