-
Notifications
You must be signed in to change notification settings - Fork 79
/
.travis.yml
74 lines (69 loc) · 2.12 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
# TAS50: THIS COOKBOOK DELIBERATELY DOES NOT USE THE STANDARD TRAVIS.YML FILE
dist: xenial
cache: bundler
addons:
apt:
sources:
- chef-current-xenial
packages:
- chef-workstation
branches:
only:
- master
before_install:
- gem install bundler
- bundle --version
- gem update --system
- gem --version
env:
- CHEF_LICENSE=accept
matrix:
include:
- rvm: 2.4.5
services: docker
before_script:
- sudo iptables -L DOCKER || ( echo "DOCKER iptables chain missing" ; sudo iptables -N DOCKER )
env:
- CHEF_VERSION=14.12.9
- KITCHEN_YAML=kitchen.dokken.yml
script:
# this tests that an upgrade to 15 succeeds when the license is accepted
- bundle exec kitchen test license-ubuntu-1604
- rvm: 2.4.5
services: docker
sudo: required
before_script:
- sudo iptables -L DOCKER || ( echo "DOCKER iptables chain missing" ; sudo iptables -N DOCKER )
env:
- CHEF_VERSION=13.6.0
- KITCHEN_YAML=kitchen.dokken.yml
script:
# this tests a downgrade from latest "13" to latest "12" via partial versions
- bundle exec kitchen test constrained-ubuntu-1604
- rvm: 2.4.5
services: docker
before_script:
- sudo iptables -L DOCKER || ( echo "DOCKER iptables chain missing" ; sudo iptables -N DOCKER )
env:
- CHEF_VERSION=14.1.1
- KITCHEN_YAML=kitchen.dokken.yml
script:
- bundle exec kitchen test default-ubuntu-1604
- rvm: 2.4.5
services: docker
before_script:
- sudo iptables -L DOCKER || ( echo "DOCKER iptables chain missing" ; sudo iptables -N DOCKER )
env:
- CHEF_VERSION=13.8.5
- KITCHEN_YAML=kitchen.dokken.yml
script:
- bundle exec kitchen test default-ubuntu-1604
- rvm: 2.4.5
services: docker
before_script:
- sudo iptables -L DOCKER || ( echo "DOCKER iptables chain missing" ; sudo iptables -N DOCKER )
env:
- CHEF_VERSION=12.21.31
- KITCHEN_YAML=kitchen.dokken.yml
script:
- bundle exec kitchen test default-ubuntu-1604