Repository: ode Updated Branches: refs/heads/master 1f8afbaba -> db6df9580 refs/heads/ode-1.3.x 7f6f94c05 -> 443742540
basic travis-ci setup. Project: http://git-wip-us.apache.org/repos/asf/ode/repo Commit: http://git-wip-us.apache.org/repos/asf/ode/commit/44374254 Tree: http://git-wip-us.apache.org/repos/asf/ode/tree/44374254 Diff: http://git-wip-us.apache.org/repos/asf/ode/diff/44374254 Branch: refs/heads/ode-1.3.x Commit: 443742540807d5b17463a16dc9ff763baacbbb62 Parents: 7f6f94c Author: Tammo van Lessen <[email protected]> Authored: Tue Jul 22 14:37:54 2014 +0200 Committer: Tammo van Lessen <[email protected]> Committed: Tue Jul 22 14:37:54 2014 +0200 ---------------------------------------------------------------------- .travis.yml | 23 +++++++++++++++++++++++ Gemfile | 3 +++ 2 files changed, 26 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ode/blob/44374254/.travis.yml ---------------------------------------------------------------------- diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..6d80d8d --- /dev/null +++ b/.travis.yml @@ -0,0 +1,23 @@ +language: java +branches: + only: + - master + - ode-1.3.x +jdk: + - oraclejdk7 +rvm: + - 1.9.3 +install: + - rvm use 1.9.3 + - gem install bundler + - bundle install +cache: + directories: + - $HOME/.m2 +notifications: + irc: "chat.freenode.net#apache-ode" + email: + - [email protected] +env: + - TEST_PORTS=8888,7171 +script: buildr clean package JAVADOC=off http://git-wip-us.apache.org/repos/asf/ode/blob/44374254/Gemfile ---------------------------------------------------------------------- diff --git a/Gemfile b/Gemfile new file mode 100644 index 0000000..de5929e --- /dev/null +++ b/Gemfile @@ -0,0 +1,3 @@ +source 'https://rubygems.org' + +gem 'buildr', '>= 1.4.19'
