From commits-return-18763-archive-asf-public=cust-asf.ponee.io@struts.apache.org Thu Feb 13 06:17:20 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 799111802C7 for ; Thu, 13 Feb 2020 07:17:20 +0100 (CET) Received: (qmail 60238 invoked by uid 500); 13 Feb 2020 06:17:19 -0000 Mailing-List: contact commits-help@struts.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@struts.apache.org Delivered-To: mailing list commits@struts.apache.org Received: (qmail 60229 invoked by uid 99); 13 Feb 2020 06:17:19 -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; Thu, 13 Feb 2020 06:17:19 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id A95DF8546B; Thu, 13 Feb 2020 06:17:19 +0000 (UTC) Date: Thu, 13 Feb 2020 06:17:19 +0000 To: "commits@struts.apache.org" Subject: [struts] branch master updated: Maps container path the same as host path MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <158157463961.21877.16712368305270713290@gitbox.apache.org> From: lukaszlenart@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: struts X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: 10017713678ed7d78dc99a9e53fb96841fc7b34d X-Git-Newrev: 9695852a52f5f0a9ec8e86535e27e8f4cf76cd24 X-Git-Rev: 9695852a52f5f0a9ec8e86535e27e8f4cf76cd24 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. lukaszlenart pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/struts.git The following commit(s) were added to refs/heads/master by this push: new 9695852 Maps container path the same as host path 9695852 is described below commit 9695852a52f5f0a9ec8e86535e27e8f4cf76cd24 Author: Lukasz Lenart AuthorDate: Thu Feb 13 07:17:12 2020 +0100 Maps container path the same as host path --- Jenkinsfile | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index d60ab71..73642e8 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -18,18 +18,12 @@ pipeline { docker { label 'ubuntu' image 'maven:3-jdk-11' - args '-v $HOME/.m2:/root/.m2 -e MAVEN_OPTS="-Xmx1024m" -e USER=$USER' + args "-v $HOME/.m2:$HOME/.m2 -e MAVEN_OPTS=\"-Xmx1024m\" -e USER=$USER" } } stages { stage('Clean Up') { steps { - sh 'echo $USER' - sh "echo ${env.USER}" - sh "echo $USER" - sh 'echo $WORKSPACE' - sh "echo ${env.WORKSPACE}" - sh "echo $WORKSPACE" cleanWs deleteDirs: true, patterns: [[pattern: '**/target/**', type: 'INCLUDE']] } }