-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
43 lines (43 loc) · 1.03 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
env:
global:
- CC_TEST_REPORTER_ID=d946fbe840359053ee5604eb18d4cd53c9da50bb2e6af66191385e49962be152
sudo: false
cache: bundler
language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1
- 2.2
- 2.3
- 2.4.0
- 2.4.1
- 2.4.2
- ruby-head
- jruby-19mode
- jruby-9.0.1.0
- jruby-9.1.5.0
- jruby-9.1.9.0
- jruby-head
- rbx-3
env:
# this doesn't do anything for MRI or RBX, but it doesn't hurt them either
# for JRuby, it enables us to get more accurate coverage data
- JRUBY_OPTS="--debug"
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
- rvm: rbx-3
fast_finish: true
before_install: gem update --remote bundler
install:
- bundle install --retry=3
before_script:
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
- chmod +x ./cc-test-reporter
- ./cc-test-reporter before-build
script:
- bundle exec rspec
after_script:
- if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT; fi