forked from simp/pupmod-simp-rsyslog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
45 lines (45 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
45
# The testing matrix considers ruby/puppet versions supported by SIMP and PE:
# ------------------------------------------------------------------------------
# release pup ruby eol
# PE 2015.2 4.2 2.1.7 2017-03-17
# PE 2015.3 4.3 2.1.8 2017-03-17
# PE 2016.1 4.4 2.1.9 2017-03-17 (yes: all three EOL on the same day!)
# PE 2016.2 4.5 2.1.9 2017-04-30
# PE 2016.4 4.7 2.1.9 TBD (LTS)
# PE 2016.5 4.8 2.1.9 TBD
# SIMP6.0.0 4.8 2.1.9 TBD
---
language: ruby
sudo: false
cache: bundler
before_script:
- bundle
bundler_args: --without development system_tests
before_install: rm Gemfile.lock || true
script:
- bundle exec rake test
notifications:
email: false
rvm:
- 2.1.9
env:
global:
- STRICT_VARIABLES=yes
- TRUSTED_NODE_DATA=yes
matrix:
- PUPPET_VERSION="~> 4.9.4"
- PUPPET_VERSION="~> 4.8.2"
- PUPPET_VERSION="~> 4.7.0"
- PUPPET_VERSION="~> 4.5.0"
- PUPPET_VERSION="~> 4.4.0"
- PUPPET_VERSION="~> 4.3.0"
- PUPPET_VERSION="~> 4.2.0"
matrix:
fast_finish: true
allow_failures:
- env: PUPPET_VERSION="~> 4.9.4"
- env: PUPPET_VERSION="~> 4.7.0"
- env: PUPPET_VERSION="~> 4.5.0"
- env: PUPPET_VERSION="~> 4.4.0"
- env: PUPPET_VERSION="~> 4.3.0"
- env: PUPPET_VERSION="~> 4.2.0"