-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy path.travis.yml
40 lines (37 loc) · 974 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
---
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'
- rvm: 2.3.3
bundler_args: "--without guard tools"
script: bundle exec rake $SUITE
env: SUITE=test:integration OS='oracle'
- rvm: 2.3.3
bundler_args: "--without guard tools"
script: bundle exec rake $SUITE
env: SUITE=test:integration OS='ubuntu'
- rvm: 2.3.3
bundler_args: "--without guard tools"
script: bundle exec rake $SUITE
env: SUITE=test:integration OS='debian'
- rvm: 2.3.3
bundler_args: "--without guard tools"
script: bundle exec rake $SUITE
env: SUITE=test:integration OS='fedora'