forked from jruby/jruby-openssl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
66 lines (60 loc) · 1.78 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
language: ruby
dist: precise # due OpenJDK 7
jdk:
- oraclejdk8
rvm:
- jruby-9.2.12.0
- jruby-9.2.9.0
- jruby-1.7.27
- jruby-head
before_install:
- unset _JAVA_OPTIONS
- unset JRUBY_OPTS
- rvm @default,@global do gem uninstall bundler -a -x -I || true
- gem install bundler -v "~>1.17.3"
install: if [[ "$BUNDLE_INSTALL" != 0 ]]; then jruby -S bundle install; else true; fi
before_script:
- if [[ "$BUNDLE_INSTALL" != 0 ]]; then jruby -rbundler/setup -S rake test_prepare; else true; fi
- export JRUBY_OPTS="-Xjit.threshold=0"
script: jruby -rbundler/setup -S rake test
matrix:
allow_failures:
- rvm: jruby-head
- script: jruby -rbundler/setup -S rake integration:install integration:test
include:
- jdk: openjdk7
rvm: jruby-1.7.24
- jdk: oraclejdk11
rvm: jruby-9.2.11.1
- jdk: oraclejdk11
rvm: jruby-head
#
- jdk: openjdk7
rvm: jruby-9.1.17.0
env: BUNDLE_INSTALL=0
script: mvn verify -P test
- jdk: oraclejdk8
rvm: jruby-9.2.12.0
env: BUNDLE_INSTALL=0
script: mvn verify -P test
#
- jdk: openjdk7
rvm: jruby-1.7.27
script: jruby -rbundler/setup -S rake integration:install integration:test
- jdk: oraclejdk8
rvm: jruby-9.2.8.0
script: jruby -rbundler/setup -S rake integration:install integration:test
- jdk: openjdk7
rvm: jruby-9.1.17.0
script: jruby -rbundler/setup -S rake integration:install integration:test
- jdk: oraclejdk11
rvm: jruby-9.2.12.0
script: jruby -rbundler/setup -S rake integration:install integration:test
notifications:
irc:
channels:
- "irc.freenode.org#jruby"
on_success: change
template:
- "%{repository} (%{branch}:%{commit} by %{author}): %{message} (%{build_url})"
skip_join: true