Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 9BC48200BC6 for ; Sat, 5 Nov 2016 08:48:09 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 9AAE9160B13; Sat, 5 Nov 2016 07:48:09 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id C6679160B17 for ; Sat, 5 Nov 2016 08:48:08 +0100 (CET) Received: (qmail 88699 invoked by uid 500); 5 Nov 2016 07:48:07 -0000 Mailing-List: contact commits-help@flex.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@flex.apache.org Delivered-To: mailing list commits@flex.apache.org Received: (qmail 88418 invoked by uid 99); 5 Nov 2016 07:48:07 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 05 Nov 2016 07:48:07 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 1F696EC22D; Sat, 5 Nov 2016 07:48:07 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: cdutz@apache.org To: commits@flex.apache.org Date: Sat, 05 Nov 2016 07:48:17 -0000 Message-Id: <5d96ff03ed8b4227be4ad21c24bc6db3@git.apache.org> In-Reply-To: <9aa74a3593c14be3a229d4293900c8d9@git.apache.org> References: <9aa74a3593c14be3a229d4293900c8d9@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [12/15] git commit: [flex-falcon] [refs/heads/develop] - - Disabled the wiping of the workspace - Increased the permgen size for the framework build (the distribution module caused permgen errors) archived-at: Sat, 05 Nov 2016 07:48:09 -0000 - Disabled the wiping of the workspace - Increased the permgen size for the framework build (the distribution module caused permgen errors) Project: http://git-wip-us.apache.org/repos/asf/flex-falcon/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-falcon/commit/5857f68d Tree: http://git-wip-us.apache.org/repos/asf/flex-falcon/tree/5857f68d Diff: http://git-wip-us.apache.org/repos/asf/flex-falcon/diff/5857f68d Branch: refs/heads/develop Commit: 5857f68d3efd358fcbf0b847322caf42c6f64b83 Parents: d540503 Author: Christofer Dutz Authored: Tue Nov 1 11:49:10 2016 +0100 Committer: Christofer Dutz Committed: Tue Nov 1 11:49:10 2016 +0100 ---------------------------------------------------------------------- Jenkinsfile | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/5857f68d/Jenkinsfile ---------------------------------------------------------------------- diff --git a/Jenkinsfile b/Jenkinsfile index 7b3ac7a..5b054b1 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -45,9 +45,9 @@ node('windows-2012-1') { try { - stage 'Wipe Workspace' + /*stage 'Wipe Workspace' // Clean the entire workspace ... for debugging ... - deleteDir() + deleteDir()*/ stage 'Checkout Upstream Projects' @@ -78,13 +78,12 @@ node('windows-2012-1') { dir('framework') { echo 'Building FlexJS Framework' - bat "mvn -U -X clean ${mavenGoal} ${mavenLocalRepo} -s C:\\.m2\\settings.xml -P apache-snapshots-enabled,build-examples,build-distribution -Dcom.adobe.systemIdsForWhichTheTermsOfTheAdobeLicenseAgreementAreAccepted=3872fc1e" + // It seems the distribution needs a little more perm-gen space. + withEnv(["MAVEN_OPTS=-XX:MaxPermSize=256m"]) { + bat "mvn -U -X clean ${mavenGoal} ${mavenLocalRepo} -s C:\\.m2\\settings.xml -P apache-snapshots-enabled,build-examples,build-distribution -Dcom.adobe.systemIdsForWhichTheTermsOfTheAdobeLicenseAgreementAreAccepted=3872fc1e" + } } - stage 'Release Site Changes' - - echo 'Releasing Site Changes' - }