-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy path.travis.yml
56 lines (53 loc) · 1.51 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
---
sudo: required
language: ruby
cache: bundler
dist: trusty
services:
- docker
before_install:
- gem --version
- bundle version
matrix:
include:
# verify lint and unit
- rvm: 2.3.3
gemfile: Gemfile
bundler_args: "--without integration guard tools"
# integration tests
- rvm: 2.3.3
bundler_args: "--without guard tools"
script: bundle exec rake $SUITE
env: SUITE=test:integration OS='centos-67'
- rvm: 2.3.3
bundler_args: "--without guard tools"
script: bundle exec rake $SUITE
env: SUITE=test:integration OS='centos-7'
- rvm: 2.3.3
bundler_args: "--without guard tools"
script: bundle exec rake $SUITE
env: SUITE=test:integration OS='oracle-67'
- rvm: 2.3.3
bundler_args: "--without guard tools"
script: bundle exec rake $SUITE
env: SUITE=test:integration OS='oracle-7'
- rvm: 2.3.3
bundler_args: "--without guard tools"
script: bundle exec rake $SUITE
env: SUITE=test:integration OS='ubuntu-1204'
- rvm: 2.3.3
bundler_args: "--without guard tools"
script: bundle exec rake $SUITE
env: SUITE=test:integration OS='ubuntu-1404'
- rvm: 2.3.3
bundler_args: "--without guard tools"
script: bundle exec rake $SUITE
env: SUITE=test:integration OS='ubuntu-1604'
- rvm: 2.3.3
bundler_args: "--without guard tools"
script: bundle exec rake $SUITE
env: SUITE=test:integration OS='debian-7'
- rvm: 2.3.3
bundler_args: "--without guard tools"
script: bundle exec rake $SUITE
env: SUITE=test:integration OS='debian-8'