This repository has been archived by the owner on Dec 2, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
71 lines (67 loc) · 2.06 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
---
language: clojure
lein: 2.7.1
rvm: 2.4.4
sudo: false
cache: bundler
notifications:
email: false
install: 'bundle install --without acceptance'
before_script: 'bundle exec rake puppetserver:install'
matrix:
include:
- jdk: openjdk8
script: 'bundle exec rake test:integration'
env: PUPPETSERVER_VERSION=2.6.1
- jdk: openjdk8
script: 'bundle exec rake test:integration'
env: PUPPETSERVER_VERSION=5.1.6
- jdk: oraclejdk8
script: 'bundle exec rake test:integration'
env: PUPPETSERVER_VERSION=5.1.6
- jdk: openjdk8
script: 'bundle exec rake test:integration'
env: PUPPETSERVER_VERSION=5.2.0
- jdk: openjdk8
script: 'bundle exec rake test:integration'
env: PUPPETSERVER_VERSION=5.3.6
# Open Source acceptance tests
- sudo: required
services:
- docker
install: 'bundle install'
# NOTE: 5.1.6 was not packaged for an Open Source release, so we test
# 5.1.5 instead.
env: PUPPETSERVER_VERSION=5.1.5
script: "bundle exec rake 'test:acceptance[foss,centos7,5.1.5]'"
- sudo: required
services:
- docker
install: 'bundle install'
env: PUPPETSERVER_VERSION=5.2.0
script: "bundle exec rake 'test:acceptance[foss,centos7,5.2.0]'"
- sudo: required
services:
- docker
install: 'bundle install'
env: PUPPETSERVER_VERSION=5.3.6
script: "bundle exec rake 'test:acceptance[foss,centos7,5.3.5]'"
# PE acceptance tests
- sudo: required
services:
- docker
install: 'bundle install'
env: PUPPETSERVER_VERSION=2.6.1
script: "bundle exec rake 'test:acceptance[pe,centos7,2016.4.15]'"
- sudo: required
services:
- docker
install: 'bundle install'
env: PUPPETSERVER_VERSION=5.1.6
script: "bundle exec rake 'test:acceptance[pe,centos7,2017.3.10]'"
- sudo: required
services:
- docker
install: 'bundle install'
env: PUPPETSERVER_VERSION=5.3.6
script: "bundle exec rake 'test:acceptance[pe,centos7,2018.1.4]'"