forked from jhoblitt/puppet-selenium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
41 lines (41 loc) · 1.1 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
sudo: false
language: ruby
bundler_args: --without beaker
rvm:
- 1.9.3
- 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"
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-7-docker"
- env: PUPPET_VERSION="~> 3.8.0" BEAKER_set="ubuntu-14.04-docker"
fast_finish: true
notifications:
email: false