You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-commits@hadoop.apache.org by jh...@apache.org on 2018/08/10 00:05:37 UTC

hadoop git commit: add --no-cache to try to repro branch-2 build failures

Repository: hadoop
Updated Branches:
  refs/heads/branch-2-jhung-test 2024260af -> 9bd32e332


add --no-cache to try to repro branch-2 build failures


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

Branch: refs/heads/branch-2-jhung-test
Commit: 9bd32e3322874b40d90378f315f927a6bcc8d140
Parents: 2024260
Author: Jonathan Hung <jh...@linkedin.com>
Authored: Thu Aug 9 17:05:19 2018 -0700
Committer: Jonathan Hung <jh...@linkedin.com>
Committed: Thu Aug 9 17:05:19 2018 -0700

----------------------------------------------------------------------
 start-build-env.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hadoop/blob/9bd32e33/start-build-env.sh
----------------------------------------------------------------------
diff --git a/start-build-env.sh b/start-build-env.sh
index 18e3a8c..f40a5d1 100755
--- a/start-build-env.sh
+++ b/start-build-env.sh
@@ -19,7 +19,7 @@ set -e               # exit on error
 
 cd "$(dirname "$0")" # connect to root
 
-docker build -t hadoop-build dev-support/docker
+docker build --no-cache -t hadoop-build dev-support/docker
 
 if [ "$(uname -s)" == "Linux" ]; then
   USER_NAME=${SUDO_USER:=$USER}
@@ -31,7 +31,7 @@ else # boot2docker uid and gid
   GROUP_ID=50
 fi
 
-docker build -t "hadoop-build-${USER_ID}" - <<UserSpecificDocker
+docker build --no-cache -t "hadoop-build-${USER_ID}" - <<UserSpecificDocker
 FROM hadoop-build
 RUN groupadd --non-unique -g ${GROUP_ID} ${USER_NAME}
 RUN useradd -g ${GROUP_ID} -u ${USER_ID} -k /root -m ${USER_NAME}


---------------------------------------------------------------------
To unsubscribe, e-mail: common-commits-unsubscribe@hadoop.apache.org
For additional commands, e-mail: common-commits-help@hadoop.apache.org