forked from chef-boneyard/audit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
48 lines (47 loc) · 1.42 KB
/
.travis.yml
File metadata and controls
48 lines (47 loc) · 1.42 KB
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
branches:
only:
- master
language: ruby
cache: bundler
# necessary for docker to work
sudo: required
dist: trusty
services:
- docker
before_install:
- gem install bundler
- gem --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='skip-inspec-gem-install-ubuntu-1404'
- rvm: 2.3.3
script: bundle exec rake $SUITE
env: SUITE=test:integration O
3363
S='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'