File tree Expand file tree Collapse file tree 3 files changed +22
-11
lines changed Expand file tree Collapse file tree 3 files changed +22
-11
lines changed Original file line number Diff line number Diff line change 44/.bundle /
55/vendor /
66/Gemfile.lock
7+ * .jar
Original file line number Diff line number Diff line change 11language : ruby
2- cache : bundler
3- rvm :
4- - jruby-9.0.5.0
5- - jruby-9.1.5.0
6- - jruby-head
7- jdk :
8- - openjdk7
9- before_install :
10- - gem install bundler
2+ install : ./embulk.jar bundle install --path vendor/bundle
113matrix :
4+ include :
5+ - env : EMBULK_VERSION=0.9.15
6+ rvm : jruby-9.1.5.0 # bundled jruby version
7+ jdk : openjdk8 # embulk 0.9.x uses jdk8
8+ - env : EMBULK_VERSION=latest
9+ rvm : jruby-9.1.5.0 # ?
10+ jdk : openjdk8 # ?
1211 allow_failures :
13- - rvm : jruby-head
12+ - env : EMBULK_VERSION=latest
13+ before_install :
14+ - curl -o embulk.jar --create-dirs -L "http://dl.embulk.org/embulk-${EMBULK_VERSION}.jar"
15+ - chmod +x embulk.jar
16+ - ./embulk.jar gem install bundler
17+ script : ./embulk.jar bundle exec rake test
Original file line number Diff line number Diff line change 44
55# require 'embulk/java/bootstrap'
66require 'embulk'
7- Embulk . setup
7+ begin
8+ # Embulk ~> 0.8.x
9+ Embulk . setup
10+ rescue NotImplementedError
11+ # Embulk ~> 0.9.x
12+ require 'embulk/java/bootstrap'
13+ end
814Embulk . logger = Embulk ::Logger . new ( '/dev/null' )
915
1016APP_ROOT = File . expand_path ( '../' , __dir__ )
You can’t perform that action at this time.
0 commit comments