forked from inspec/train
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
45 lines (41 loc) · 1000 Bytes
/
.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
---
sudo: required
language: ruby
cache: bundler
# necessary for docker to work
dist: xenial
services:
- docker
bundler_args: --without integration tools
branches:
only:
- master
- 2-release
matrix:
include:
- rvm: 2.4.5
before_install:
- gem install bundler
- gem --version
- rvm: 2.5.5
before_install:
- gem install bundler
- gem --version
- rvm: 2.6
script: bundle exec rake $SUITE
env: SUITE="test"
- rvm: 2.6
script: bundle exec rake $SUITE
env: SUITE="test:docker config=test-travis-debian.yml"
- rvm: 2.6
script: bundle exec rake $SUITE
env: SUITE="test:docker config=test-travis-centos.yml"
- rvm: 2.6
script: bundle exec rake $SUITE
env: SUITE="test:docker config=test-travis-oel.yml"
- rvm: 2.6
script: bundle exec rake $SUITE
env: SUITE="test:docker config=test-travis-fedora.yml"
- rvm: 2.6
script: bundle exec rake $SUITE
env: SUITE="test:docker config=test-travis-ubuntu.yml"