forked from aptible/aptible-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappveyor.yml
31 lines (26 loc) · 900 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
version: 1.0.{build}-{branch}
environment:
matrix:
- RUBY_VERSION: 200
- RUBY_VERSION: 21
- RUBY_VERSION: 22
- RUBY_VERSION: 23
install:
# The SSL_CERT_* environment variables are here since otherwise calls to
# codecov.io wtill not work. These variables do have to be set in order for
# the gem to make calls to the Aptible API, since otherwise Ruby will fail
# with a certificate verification error.
- set SSL_CERT_DIR=%PROGRAMFILES%\Git\mingw64\ssl\certs
- set SSL_CERT_FILE=%PROGRAMFILES%\Git\mingw64\ssl\cert.pem
# Override PATHEXT so our ssh bat file has a higher precedence.
- set PATHEXT=.BAT;.COM;.EXE;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC
- set PATH=C:\Ruby%RUBY_VERSION%-x64\bin;%PATH%
- bundle config --local path vendor/bundle
- bundle install
build: off
before_test:
- ruby -v
- gem -v
- bundle -v
test_script:
- bundle exec rake ci