forked from jruby/warbler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
41 lines (41 loc) · 930 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
rvm:
- jruby-9.0.5.0
- jruby-9.1.17.0
- jruby-9.2.0.0
jdk:
- openjdk8
branches:
only:
- master
- /-dev|-feature|-fix/
env:
- JRUBY_OPTS="-J-Xmx896M"
script: bundle exec rake $TASK
matrix:
include:
- rvm: jruby-head
env: TASK=test
- rvm: jruby-9.1.17.0
env: TASK=integration
- rvm: jruby-9.1.16.0
env: RAKE_VERSION="~>10.1"
- rvm: jruby-9.1.16.0
env: RAKE_VERSION="~>11.2"
- rvm: jruby-9.1.16.0
env: RAKE_VERSION="~>12.3"
allow_failures:
- rvm: jruby-head
notifications:
irc:
channels:
- "irc.freenode.org#jruby"
on_success: change
on_failure: always
template:
- "%{repository} (%{branch}:%{commit} by %{author}): %{message} (%{build_url})"
before_install:
- git fetch --unshallow
- gem update --system 2.6.14
- gem --version
- rvm @global do gem uninstall bundler -a -x -I || true
- gem install bundler -v '< 2'