You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pirk.apache.org by ja...@apache.org on 2016/12/02 04:37:30 UTC

incubator-pirk git commit: Update the Pirk .travis.yml to run faster through use of the Docker infra and only run tests once - closes apache/incubator-pirk#118

Repository: incubator-pirk
Updated Branches:
  refs/heads/master c139d9642 -> 9e3ebfd80


Update the Pirk .travis.yml to run faster through use of the Docker infra and only run tests once - closes apache/incubator-pirk#118


Project: http://git-wip-us.apache.org/repos/asf/incubator-pirk/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-pirk/commit/9e3ebfd8
Tree: http://git-wip-us.apache.org/repos/asf/incubator-pirk/tree/9e3ebfd8
Diff: http://git-wip-us.apache.org/repos/asf/incubator-pirk/diff/9e3ebfd8

Branch: refs/heads/master
Commit: 9e3ebfd8028dda8a21f758e674e160e6ec3fb578
Parents: c139d96
Author: Jacob Wilder <ja...@apache.org>
Authored: Thu Dec 1 23:36:48 2016 -0500
Committer: Jacob Wilder <ja...@apache.org>
Committed: Thu Dec 1 23:36:48 2016 -0500

----------------------------------------------------------------------
 .travis.yml | 15 ++-------------
 1 file changed, 2 insertions(+), 13 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-pirk/blob/9e3ebfd8/.travis.yml
----------------------------------------------------------------------
diff --git a/.travis.yml b/.travis.yml
index cc1896f..5ae6c9a 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -2,21 +2,10 @@ language: java
 os: linux
 jdk: oraclejdk8
 
-# 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
-
-  - wget http://apache.claz.org/maven/maven-3/3.3.9/binaries/apache-maven-3.3.9-bin.tar.gz
-  - tar zxvf apache-maven-3.3.9-bin.tar.gz
-  - chmod +x apache-maven-3.3.9/bin/mvn
-  - export M2_HOME=$PWD/apache-maven-3.3.9
-  - export PATH=$PWD/apache-maven-3.3.9/bin:${PATH}
-  - hash -r
+sudo: false
 
 cache:
   directories:
     - $HOME/.m2
 
-install: mvn clean install
+script: mvn clean install