forked from chef/omnibus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
38 lines (32 loc) · 911 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
version: "{build}"
os: Windows Server 2012 R2
platform:
- x64
environment:
matrix:
- RUBY_VERSION: 25
- RUBY_VERSION: 24
clone_folder: c:\projects\omnibus
clone_depth: 1
skip_tags: true
branches:
only:
- master
install:
- SET PATH=C:\Ruby%RUBY_VERSION%\bin;C:\Ruby23-x64\DevKit\mingw\bin;%PATH%
- echo %PATH%
- ruby --version
- gem --version
- gem install bundler -v 1.10.6 --quiet --no-ri --no-rdoc --force
- bundler --version
- cp C:\Ruby23-x64\DevKit\mingw\bin\bsdtar.exe C:\Ruby23-x64\DevKit\mingw\bin\tar.exe
- appveyor DownloadFile http://curl.haxx.se/ca/cacert.pem -FileName C:\cacert.pem
- set SSL_CERT_FILE=C:\cacert.pem
- git config --global user.email "[email protected]"
- git config --global user.name "Pink Panther"
build_script:
- bundle install
test_script:
- bundle exec rake unit
- bundle exec rake functional
- bundle exec rake acceptance