-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
42 lines (32 loc) · 879 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
language: ruby
cache: bundler
rvm:
- 2.3.1
before_install:
- gem update --system
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 rake $TASKS
gemfile:
- gemfiles/master.gemfile
- gemfiles/one.gemfile
- gemfiles/rails_4.gemfile
- gemfiles/3.2.22.gemfile
- gemfiles/4.2.1.gemfile
- gemfiles/5.0.0.gemfile
after_script:
- ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT
env:
global:
- CC_TEST_REPORTER_ID=ebe8c89484407c039bfe9cd6c766dd415018d553f09c0acd606787f09bfd41a7
- CF_RUN_PERM_SPECS=false
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/a47f3b0b8b0ddc96f09f
on_success: change
on_failure: always
on_start: never