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 27206200D42 for ; Fri, 3 Nov 2017 05:03:49 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 2599A160BFB; Fri, 3 Nov 2017 04:03:49 +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 6D577160BE5 for ; Fri, 3 Nov 2017 05:03:48 +0100 (CET) Received: (qmail 33277 invoked by uid 500); 3 Nov 2017 04:03:47 -0000 Mailing-List: contact commits-help@groovy.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@groovy.apache.org Delivered-To: mailing list commits@groovy.apache.org Received: (qmail 33268 invoked by uid 99); 3 Nov 2017 04:03:47 -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; Fri, 03 Nov 2017 04:03:47 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id B1543DFC32; Fri, 3 Nov 2017 04:03:44 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: paulk@apache.org To: commits@groovy.apache.org Message-Id: <4af33573ed194e3d996772cd919f97c8@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: groovy git commit: experiment with Appveyor for Windows build Date: Fri, 3 Nov 2017 04:03:44 +0000 (UTC) archived-at: Fri, 03 Nov 2017 04:03:49 -0000 Repository: groovy Updated Branches: refs/heads/master 3ce1ee447 -> a3ca41bc4 experiment with Appveyor for Windows build Project: http://git-wip-us.apache.org/repos/asf/groovy/repo Commit: http://git-wip-us.apache.org/repos/asf/groovy/commit/a3ca41bc Tree: http://git-wip-us.apache.org/repos/asf/groovy/tree/a3ca41bc Diff: http://git-wip-us.apache.org/repos/asf/groovy/diff/a3ca41bc Branch: refs/heads/master Commit: a3ca41bc4ebb232400c676bbe51a606dca4b6c9e Parents: 3ce1ee4 Author: paulk Authored: Fri Nov 3 14:03:33 2017 +1000 Committer: paulk Committed: Fri Nov 3 14:03:33 2017 +1000 ---------------------------------------------------------------------- appveyor.yml | 4 ++-- gradle.properties | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/groovy/blob/a3ca41bc/appveyor.yml ---------------------------------------------------------------------- diff --git a/appveyor.yml b/appveyor.yml index b6e0432..072f990 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -25,10 +25,10 @@ build: verbosity: detailed build_script: - - gradlew.bat -u -i clean assemble + - gradlew.bat --no-daemon -u -i clean assemble test_script: - - gradlew.bat -u -i -S check + - gradlew.bat --no-daemon -u -i -S check cache: - .gradle http://git-wip-us.apache.org/repos/asf/groovy/blob/a3ca41bc/gradle.properties ---------------------------------------------------------------------- diff --git a/gradle.properties b/gradle.properties index 3fa02ca..39fa0e6 100644 --- a/gradle.properties +++ b/gradle.properties @@ -30,9 +30,9 @@ groovycExamples_mx = 1g javaDoc_mx = 1g # jdk 9 -#org.gradle.jvmargs=-ea -Xmx1G +#org.gradle.jvmargs=-ea -Xmx1400m # jdk 6-8 -org.gradle.jvmargs=-Xmx1G -XX:MaxPermSize=384m -XX:+CMSClassUnloadingEnabled -XX:+CMSPermGenSweepingEnabled +org.gradle.jvmargs=-Xmx1200m -XX:MaxPermSize=384m -XX:+CMSClassUnloadingEnabled -XX:+CMSPermGenSweepingEnabled # Property below not currently used for gradle build. It was used in the Ant build by forking a JVM instance using # this property which then called the real groovyDoc Ant task. For now setting JAVA_OPTS globally is the workaround.