forked from flavorjones/mini_portile
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathappveyor.yml
26 lines (23 loc) · 811 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
---
install:
- ps: ((New-Object Net.WebClient).DownloadFile('ftp://ftp.gnupg.org/gcrypt/binary/libiconv-1.9.1.dll.zip', 'C:\Program Files (x86)\Git\bin\libiconv.zip'))
- ps: unzip 'C:\Program Files (x86)\Git\bin\libiconv.zip'
- ps: ((New-Object Net.WebClient).DownloadFile('https://raw.githubusercontent.com/bagder/ca-bundle/master/ca-bundle.crt', "$env:TMP\ca-bundle.crt"))
- SET SSL_CERT_FILE=%TMP%\ca-bundle.crt
- SET PATH=C:\Ruby%ruby_version%\bin;%PATH%
- SET RAKEOPT=-rdevkit
- ruby --version
- gem --version
- bundle install
build: off
test_script:
- bundle exec rake
environment:
matrix:
- ruby_version: "22-x64"
- ruby_version: "22"
- ruby_version: "21-x64"
- ruby_version: "21"
- ruby_version: "200-x64"
- ruby_version: "200"
- ruby_version: "193"