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/db6df958 Tree: http://git-wip-us.apache.org/repos/asf/ode/tree/db6df958 Diff: http://git-wip-us.apache.org/repos/asf/ode/diff/db6df958 Branch: refs/heads/master Commit: db6df95803e202d95359d133d0502dbffaf3a2a4 Parents: 1f8afba 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:38:29 2014 +0200 ---------------------------------------------------------------------- .travis.yml | 23 +++++++++++++++++++++++ Gemfile | 3 +++ 2 files changed, 26 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ode/blob/db6df958/.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/db6df958/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'
