forked from rubygems/rubygems
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
42 lines (37 loc) · 919 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
38
39
40
41
42
version: '{build}'
branches:
only:
- master
- auto
- /[\d.]+/
skip_tags: true
clone_depth: 10
environment:
matrix:
- ruby_version: 193
- ruby_version: 200
- ruby_version: 200-x64
- ruby_version: 21
- ruby_version: 21-x64
- ruby_version: 22
- ruby_version: 22-x64
install:
- ps: >-
$env:path = 'C:\Ruby' + $env:ruby_version + '\bin;' + $env:path
$env:TRAVIS = $TRUE
if ((gem query -i rake) -eq $False){ gem install rake --no-document }
if ((gem query -i hoe) -eq $False){ gem install hoe --no-document }
gem install minitest -v "~> 4.7" --no-document
ruby -v
cache:
- C:\Ruby193\lib\ruby\gems\1.9.1
- C:\Ruby200\lib\ruby\gems\2.0.0
- C:\Ruby200-x64\lib\ruby\gems\2.0.0
- C:\Ruby21\lib\ruby\gems\2.1.0
- C:\Ruby21-x64\lib\ruby\gems\2.1.0
- C:\Ruby22\lib\ruby\gems\2.2.0
- C:\Ruby22-x64\lib\ruby\gems\2.2.0
build: off
test_script:
- cmd: rake -rdevkit test
deploy: off