forked from lineofflight/peddler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
35 lines (35 loc) · 952 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
env:
global:
- AWS_ACCESS_KEY_ID=foo
- AWS_SECRET_ACCESS_KEY=bar
- CC_TEST_REPORTER_ID=738ee95086106a9011b10dd006ac5e0d74541774c8bb6d9e5ceb705c01115afa
- JRUBY_OPTS="$JRUBY_OPTS --debug"
language: ruby
before_install:
- gem update --system
- gem install bundler
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
rvm:
- 2.4
- 2.5
- 2.6
- jruby-9000
- ruby-head
matrix:
allow_failures:
- rvm: ruby-head
exclude:
- rvm: jruby-9000
gemfile: gemfiles/ox.gemfile
bundler_args: --without development
gemfile:
- gemfiles/libxml.gemfile
- gemfiles/ox.gemfile
- gemfiles/nokogiri.gemfile
- gemfiles/rexml.gemfile
sudo: false