-
Notifications
You must be signed in to change notification settings - Fork 49
/
.travis.yml
44 lines (44 loc) · 1.26 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
sudo: false
language: ruby
bundler_args: --without beaker --full-index
before_install: rm Gemfile.lock || true
rvm:
- 2.0
- 2.1
- 2.2
env:
- PUPPET_GEM_VERSION="~> 3.7"
- PUPPET_GEM_VERSION="~> 4.0"
matrix:
exclude:
- rvm: 2.2
env: PUPPET_GEM_VERSION="~> 3.7"
- rvm: 2.0
env: PUPPET_GEM_VERSION="~> 4.0"
include:
- rvm: '2.1'
sudo: required
services: docker
env: PUPPET_VERSION="~> 3.8.0" BEAKER_set="centos-6-docker"
script: bundle exec rake acceptance
bundler_args: --without development
- rvm: '2.1'
sudo: required
services: docker
env: PUPPET_VERSION="~> 3.8.0" BEAKER_set="centos-7-docker"
script: bundle exec rake acceptance
bundler_args: --without development
- rvm: '2.1'
sudo: required
services: docker
env: PUPPET_VERSION="~> 3.8.0" BEAKER_set="ubuntu-14.04-docker"
script: bundle exec rake acceptance
bundler_args: --without development
allow_failures:
# XXX presumably a systemd issue
- env: PUPPET_VERSION="~> 3.8.0" BEAKER_set="centos-6-docker"
- env: PUPPET_VERSION="~> 3.8.0" BEAKER_set="centos-7-docker"
- env: PUPPET_VERSION="~> 3.8.0" BEAKER_set="ubuntu-14.04-docker"
fast_finish: true
notifications:
email: false