-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
53 lines (42 loc) · 894 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
42
43
44
45
46
47
48
49
50
51
52
53
language: ruby
rvm:
- jruby-19mode
- jruby-9.0.5.0
- jruby-head
matrix:
include:
- rvm: jruby-19mode
jdk: openjdk7
env: INTEG_SUITE="spec:all" WILDFLY_VERSION="9.0.1.Final"
- rvm: jruby-9.0.5.0
jdk: openjdk7
env: INTEG_SUITE="spec:all" WILDFLY_VERSION="9.0.1.Final"
allow_failures:
- rvm: jruby-head
jdk:
- oraclejdk8
env:
matrix:
- INTEG_SUITE=spec:all
global:
- JAVA_OPTS="-Xmx1536m"
sudo: false
cache:
directories:
- $HOME/.m2/repository
before_install:
- gem install bundler
- gem update bundler
install: travis_retry bundle install
before_script:
- unset RACK_ENV RAILS_ENV
- bundle exec rake build
script:
- bundle exec rake rubocop
- bundle exec rake spec
- cd integration-tests
- travis_wait bundle exec rake spec:wildfly:setup
- bundle exec rake $INTEG_SUITE
branches:
only:
- master