Repository: incubator-pirk Updated Branches: refs/heads/master 7bb647834 -> 4eb1b8234
Closing PIRK-5 -- Adding initial .travis.yml configuration file Project: http://git-wip-us.apache.org/repos/asf/incubator-pirk/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-pirk/commit/4eb1b823 Tree: http://git-wip-us.apache.org/repos/asf/incubator-pirk/tree/4eb1b823 Diff: http://git-wip-us.apache.org/repos/asf/incubator-pirk/diff/4eb1b823 Branch: refs/heads/master Commit: 4eb1b823494f1db5986e2d1bb1691e30fa8194b1 Parents: 7bb6478 Author: eawilliams <[email protected]> Authored: Fri Jul 15 09:09:53 2016 -0400 Committer: eawilliams <[email protected]> Committed: Fri Jul 15 09:09:53 2016 -0400 ---------------------------------------------------------------------- .travis.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/4eb1b823/.travis.yml ---------------------------------------------------------------------- diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..456d1cc --- /dev/null +++ b/.travis.yml @@ -0,0 +1,17 @@ +language: java + +os: + - linux + +jdk: + - oraclejdk8 + - oraclejdk7 + - openjdk7 + +# before_install is used to provide a workaround for buffer overflow issues with OpenJDK versions of java as per: +# https://github.com/travis-ci/travis-ci/issues/5227#issuecomment-165135711 +before_install: + - sudo hostname "$(hostname | cut -c1-63)" + - sed -e "s/^\\(127\\.0\\.0\\.1.*\\)/\\1 $(hostname | cut -c1-63)/" /etc/hosts | sudo tee /etc/hosts + +script: mvn clean package -f pom.xml
