You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by lb...@apache.org on 2020/03/30 14:40:06 UTC

[camel-quarkus] 03/04: Set MAVEN_OPTS for JVM build steps

This is an automated email from the ASF dual-hosted git repository.

lburgazzoli pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git

commit 4c7b302645ec48910a88a99e6ca9ccce55aa9a93
Author: James Netherton <ja...@gmail.com>
AuthorDate: Mon Mar 30 09:02:40 2020 +0100

    Set MAVEN_OPTS for JVM build steps
---
 .github/workflows/pr-build.yaml | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/.github/workflows/pr-build.yaml b/.github/workflows/pr-build.yaml
index 75d6584..67afc45 100644
--- a/.github/workflows/pr-build.yaml
+++ b/.github/workflows/pr-build.yaml
@@ -35,6 +35,8 @@ env:
 jobs:
   build:
     runs-on: ubuntu-latest
+    env:
+      MAVEN_OPTS: -Xmx3000m
     steps:
       - name: Set BRANCH_OPTIONS
         if: github.base_ref == 'camel-master' || github.base_ref == 'quarkus-master'
@@ -63,6 +65,8 @@ jobs:
     strategy:
       matrix:
         java: [ '11' , '12' ]
+    env:
+      MAVEN_OPTS: -Xmx3000m
     steps:
       - name: Set BRANCH_OPTIONS
         if: github.base_ref == 'camel-master' || github.base_ref == 'quarkus-master'