forked from activescaffold/active_scaffold
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
31 lines (31 loc) · 817 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
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
after_script:
- if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT; fi
bundler_args: --clean --deployment --jobs=$(nproc) --without development production
cache: bundler
dist: trusty
gemfile:
- Gemfile
- gemfiles/Gemfile.rails-4.2.x
- gemfiles/Gemfile.rails-5.0.x
- gemfiles/Gemfile.rails-5.2.x
jdk:
- openjdk8
language: ruby
matrix:
fast_finish: true
exclude:
allow_failures:
- rvm: rbx-3
- rvm: jruby-9.1.13.0
gemfile: gemfiles/Gemfile.rails-5.2.x
rvm:
- 2.3.5
- 2.4.2
- 2.5.0
- jruby-9.1.13.0
- rbx-3
sudo: required