Skip to content

Commit d6bb141

Browse files
committed
Fix .travis.yml to work with embulk 0.8.x
embulk 0.9.x is not done yet
1 parent 5f13271 commit d6bb141

File tree

2 files changed

+15
-8
lines changed

2 files changed

+15
-8
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,4 @@ vendor/
77
.ruby-version
88
.tags
99
your-project-000.json
10+
embulk.jar

.travis.yml

+14-8
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,17 @@
11
language: ruby
22
matrix:
33
include:
4-
- rvm: jruby-9.0.5.0
5-
jdk: openjdk7 # embulk 8.x uses jdk7. jruby-9.2.x.x does not support jdk7
6-
- rvm: jruby-9.2.6.0
7-
jdk: openjdk8 # embulk 9.x uses jdk8
8-
- rvm: jruby-head
9-
jdk: openjdk8
10-
allow_failures:
11-
- rvm: jruby-head
4+
- env: EMBULK_VERSION=0.8.39
5+
rvm: jruby-9.1.5.0 # bundled jruby version
6+
jdk: openjdk7 # embulk 0.8.x uses jdk7
7+
# - env: EMBULK_VERSION=0.9.15
8+
# rvm: jruby-9.1.5.0 # bundled jruby version
9+
# jdk: openjdk8 # embulk 0.9.x uses jdk8
10+
# - env: EMBULK_VERSION=latest
11+
# rvm: jruby-9.1.5.0 # ?
12+
# jdk: openjdk8 # ?
13+
# allow_failures:
14+
# - env: EMBULK_VERSION=latest
15+
# before_install:
16+
# - curl -o embulk.jar --create-dirs -L "http://dl.embulk.org/embulk-${EMBULK_VERSION}.jar"
17+
# script: bundle exec env RUBYOPT="-r $PWD/embulk.jar -r embulk" rake test

0 commit comments

Comments
 (0)