forked from fluent/fluentd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
37 lines (33 loc) · 863 Bytes
/
appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
version: '{build}'
# init:
# - ps: iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
install:
- SET PATH=C:\Ruby%ruby_version%\bin;%PATH%
- IF %ridk%==0 "%devkit%\\devkitvars.bat"
- ruby --version
- gem --version
- IF %ridk%==1 ridk.cmd exec bundle install
- IF %ridk%==0 bundle install
build: off
test_script:
- bundle exec rake test
# - bundle exec rake test TESTOPTS=-v
branches:
only:
- master
# https://www.appveyor.com/docs/installed-software/#ruby
environment:
matrix:
- ruby_version: "23-x64"
devkit: C:\Ruby23-x64\DevKit
ridk: 0
- ruby_version: "23"
devkit: C:\Ruby23\DevKit
ridk: 0
- ruby_version: "24-x64"
ridk: 1
- ruby_version: "24"
ridk: 1
matrix:
allow_failures:
- ruby_version: "21"