From commits-return-12150-archive-asf-public=cust-asf.ponee.io@hudi.apache.org Wed Feb 26 11:38:32 2020 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [207.244.88.153]) by mx-eu-01.ponee.io (Postfix) with SMTP id 36C60180668 for ; Wed, 26 Feb 2020 12:38:31 +0100 (CET) Received: (qmail 31881 invoked by uid 500); 26 Feb 2020 11:38:30 -0000 Mailing-List: contact commits-help@hudi.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@hudi.apache.org Delivered-To: mailing list commits@hudi.apache.org Received: (qmail 31872 invoked by uid 99); 26 Feb 2020 11:38:30 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 26 Feb 2020 11:38:30 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id 889208DACA; Wed, 26 Feb 2020 11:38:30 +0000 (UTC) Date: Wed, 26 Feb 2020 11:38:30 +0000 To: "commits@hudi.apache.org" Subject: [incubator-hudi] branch master updated: [HUDI-606] Improve execute build_local_docker_images.sh script MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <158271711039.7106.18172087168841158009@gitbox.apache.org> From: leesf@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: incubator-hudi X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: 11fb2c26145f672d36a3491366c05caf3a23fde8 X-Git-Newrev: 323fffad0dccf0ca5cb4e533e7fbcd2a2bcfaf3b X-Git-Rev: 323fffad0dccf0ca5cb4e533e7fbcd2a2bcfaf3b X-Git-NotificationType: ref_changed_plus_diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated This is an automated email from the ASF dual-hosted git repository. leesf pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-hudi.git The following commit(s) were added to refs/heads/master by this push: new 323fffa [HUDI-606] Improve execute build_local_docker_images.sh script 323fffa is described below commit 323fffad0dccf0ca5cb4e533e7fbcd2a2bcfaf3b Author: lamber-ken AuthorDate: Wed Feb 12 13:29:13 2020 +0800 [HUDI-606] Improve execute build_local_docker_images.sh script --- docker/build_local_docker_images.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/docker/build_local_docker_images.sh b/docker/build_local_docker_images.sh index 089826f..2d97f54 100755 --- a/docker/build_local_docker_images.sh +++ b/docker/build_local_docker_images.sh @@ -16,6 +16,9 @@ # See the License for the specific language governing permissions and # limitations under the License. +SCRIPT_PATH=$(cd `dirname $0`; pwd) +WS_ROOT=`dirname $SCRIPT_PATH` + while true; do read -p "Docker images can be downloaded from docker hub and seamlessly mounted with latest HUDI jars. Do you still want to build docker images from scratch ?" yn case $yn in @@ -24,6 +27,6 @@ while true; do * ) echo "Please answer yes or no.";; esac done -pushd ../ +pushd ${WS_ROOT} mvn clean pre-integration-test -DskipTests -Ddocker.compose.skip=true -Ddocker.build.skip=false popd