forked from chef-boneyard/audit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
52 lines (51 loc) · 1.56 KB
/
.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
42
43
44
45
46
47
48
49
50
51
52
branches:
only:
- master
language: ruby
cache: bundler
# necessary for docker to work
sudo: required
dist: trusty
services:
- docker
before_install:
- gem update --system
- gem --version
- bundle --version
matrix:
include:
- rvm: 2.2
script: bundle exec rake
- rvm: 2.3.3
script: bundle exec rake $SUITE
env: SUITE=test:integration OS='default-centos-7'
- rvm: 2.3.3
script: bundle exec rake $SUITE
env: SUITE=test:integration OS='default-ubuntu-1404'
- rvm: 2.3.3
script: bundle exec rake $SUITE
env: SUITE=test:integration OS='missing-profile-no-fail-ubuntu-1404'
- rvm: 2.3.3
script: bundle exec rake $SUITE && exit 1 || echo "OK"
env: SUITE=test:integration OS='missing-profile-fail-ubuntu-1404'
- rvm: 2.3.3
script: bundle exec rake $SUITE
env: SUITE=test:integration OS='gem-install-version-centos-7'
- rvm: 2.3.3
script: bundle exec rake $SUITE
env: SUITE=test:integration OS='gem-install-version-ubuntu-1404'
- rvm: 2.3.3
script: bundle exec rake $SUITE
env: SUITE=test:integration OS='gem-install-core-version-ubuntu-1404'
- rvm: 2.3.3
script: bundle exec rake $SUITE
env: SUITE=test:integration OS='skip-inspec-gem-install-ubuntu-1404'
- rvm: 2.3.3
script: bundle exec rake $SUITE
env: SUITE=test:integration OS='inspec-attributes-ubuntu-1404'
- rvm: 2.3.3
script: bundle exec rake $SUITE
env: SUITE=test:integration OS='chef-node-enabled-ubuntu-1404'
- rvm: 2.3.3
script: bundle exec rake $SUITE
env: SUITE=test:integration OS='chef-node-disabled-ubuntu-1404'