-
Notifications
You must be signed in to change notification settings - Fork 10
/
appveyor.yml
52 lines (44 loc) · 1.26 KB
/
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
43
44
45
46
47
48
49
50
51
52
version: '{build}'
image: Visual Studio 2019
init:
# use a minimal path
- 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
# Load ruby trunk build
- 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
)
platform: x64
install:
- set SSL_CERT_FILE=C:/ruby24-x64/ssl/cert.pem
- ruby --version
- gem --version
# Assume we can use the version of bundler that Appveyor has packaged with each ruby version
- bundle install
build: off
test_script:
- rake -rdevkit
environment:
matrix:
- ruby_version: _trunk
- ruby_version: 30-x64
- ruby_version: 30
- ruby_version: 27-x64
- ruby_version: 27
- ruby_version: 26-x64
- ruby_version: 26
- ruby_version: 25-x64
- ruby_version: 25
- ruby_version: 24-x64
- ruby_version: 24
- ruby_version: 23-x64
- ruby_version: 23
- ruby_version: 22-x64
- ruby_version: 22
- ruby_version: 21-x64
- ruby_version: 21
- ruby_version: 200-x64
- ruby_version: 200
matrix:
allow_failures:
- ruby_version: _trunk