forked from salt-formulas/salt-formula-opencontrail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
42 lines (37 loc) · 979 Bytes
/
.travis.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
sudo: required
services:
- docker
install:
- pip install PyYAML
- pip install virtualenv
- |
test -e Gemfile || cat <<EOF > Gemfile
source 'https://rubygems.org'
gem 'rake'
gem 'test-kitchen'
gem 'kitchen-docker'
gem 'kitchen-vagrant'
gem 'kitchen-inspec'
gem 'inspec'
gem 'kitchen-salt', :git => 'https://github.com/epcim/kitchen-salt.git', :branch => 'dependencis-pkg-repo2'
#Waiting for PR#78
#gem 'kitchen-salt', '>=0.2.25'
- bundle install
env:
matrix:
- SUITE=analytics
- SUITE=control
- SUITE=cluster
- SUITE=single
#- SUITE=vendor-juniper
#- SUITE=tor
#- SUITE=vrouter_kubernetes
#- SUITE=vrouter
#- PLATFORM=trevorj/salty-whales:xenial SUITE=analytics
#- PLATFORM=trevorj/salty-whales:xenial SUITE=control
#- PLATFORM=trevorj/salty-whales:xenial SUITE=cluster
#...
before_script:
- make test | tail
script:
- test ! -e .kitchen.yml || bundle exec kitchen verify $SUITE