You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ode.apache.org by va...@apache.org on 2015/06/11 22:26:43 UTC

ode git commit: also mount $HOME/.buildr into docker container.

Repository: ode
Updated Branches:
  refs/heads/master 9f5acb1c0 -> 0d898f55e


also mount $HOME/.buildr into docker container.


Project: http://git-wip-us.apache.org/repos/asf/ode/repo
Commit: http://git-wip-us.apache.org/repos/asf/ode/commit/0d898f55
Tree: http://git-wip-us.apache.org/repos/asf/ode/tree/0d898f55
Diff: http://git-wip-us.apache.org/repos/asf/ode/diff/0d898f55

Branch: refs/heads/master
Commit: 0d898f55e03d4a1b43d8308495ab31269f2c89b8
Parents: 9f5acb1
Author: Tammo van Lessen <tv...@gmail.com>
Authored: Thu Jun 11 22:26:36 2015 +0200
Committer: Tammo van Lessen <tv...@gmail.com>
Committed: Thu Jun 11 22:26:36 2015 +0200

----------------------------------------------------------------------
 ci-build.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ode/blob/0d898f55/ci-build.sh
----------------------------------------------------------------------
diff --git a/ci-build.sh b/ci-build.sh
index 6a3f8ab..1a590b7 100755
--- a/ci-build.sh
+++ b/ci-build.sh
@@ -33,4 +33,4 @@ BUILDR_COMMAND="su $CONTAINER_USERNAME -c '/opt/jruby/bin/jruby -S buildr $BUILD
 
 FINAL_COMMAND="$CREATE_USER_COMMAND && $BUNDLER_COMMAND && $BUILDR_COMMAND"
 
-docker run --rm -e JAVADOC=no -e JAVA_OPTS -v `pwd`:/workspace -v $HOME/.m2:/home/dummy/.m2  -v /tmp:/tmp --entrypoint bash vanto/apache-buildr:latest-jruby-jdk7 -c "$FINAL_COMMAND"
\ No newline at end of file
+docker run --rm -e JAVADOC=no -e JAVA_OPTS -v `pwd`:/workspace -v $HOME/.m2:/home/dummy/.m2 -v $HOME/.buildr:/home/dummy/.buildr -v /tmp:/tmp --entrypoint bash vanto/apache-buildr:latest-jruby-jdk7 -c "$FINAL_COMMAND"