You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ja...@apache.org on 2023/07/28 11:39:15 UTC

[camel-quarkus] branch main updated (573bb9259c -> 4ddb6dc7ee)

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

jamesnetherton pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git


    from 573bb9259c Updated CHANGELOG.md
     new d09905e5d2 Configure native-image-xmx for kubernetes and master-openshift native tests
     new 4ddb6dc7ee Filter comments from test-categories.yaml

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .github/workflows/camel-master-cron.yaml   | 2 +-
 .github/workflows/ci-build.yaml            | 2 +-
 .github/workflows/quarkus-master-cron.yaml | 2 +-
 integration-tests/kubernetes/pom.xml       | 8 +++++++-
 integration-tests/master-openshift/pom.xml | 7 ++++++-
 5 files changed, 16 insertions(+), 5 deletions(-)


[camel-quarkus] 02/02: Filter comments from test-categories.yaml

Posted by ja...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 4ddb6dc7ee00ff9d21d899176d5facd3559829d8
Author: James Netherton <ja...@gmail.com>
AuthorDate: Fri Jul 28 08:04:25 2023 +0100

    Filter comments from test-categories.yaml
---
 .github/workflows/camel-master-cron.yaml   | 2 +-
 .github/workflows/ci-build.yaml            | 2 +-
 .github/workflows/quarkus-master-cron.yaml | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/.github/workflows/camel-master-cron.yaml b/.github/workflows/camel-master-cron.yaml
index e0954b14bb..b9345da400 100644
--- a/.github/workflows/camel-master-cron.yaml
+++ b/.github/workflows/camel-master-cron.yaml
@@ -143,7 +143,7 @@ jobs:
           java-version: '17'
       - name: Integration Tests
         run: |
-          for MODULE in $(yq -M -N e ".${{ matrix.category }}" tooling/scripts/test-categories.yaml | cut -f2 -d' '); do
+          for MODULE in $(yq -M -N e ".${{ matrix.category }}" tooling/scripts/test-categories.yaml | grep -vE '^\s*#' | cut -f2 -d' '); do
             if [[ "${MODULE}" == "null" ]]; then
               continue
             fi
diff --git a/.github/workflows/ci-build.yaml b/.github/workflows/ci-build.yaml
index 9c5e15133a..143f69b9c9 100644
--- a/.github/workflows/ci-build.yaml
+++ b/.github/workflows/ci-build.yaml
@@ -219,7 +219,7 @@ jobs:
           df -h /
       - name: Integration Tests
         run: |
-          for MODULE in $(yq -M -N e ".${{ matrix.category }}" tooling/scripts/test-categories.yaml | cut -f2 -d' '); do
+          for MODULE in $(yq -M -N e ".${{ matrix.category }}" tooling/scripts/test-categories.yaml | grep -vE '^\s*#' | cut -f2 -d' '); do
             if [[ "${MODULE}" == "null" ]]; then
               continue
             fi
diff --git a/.github/workflows/quarkus-master-cron.yaml b/.github/workflows/quarkus-master-cron.yaml
index 784507d477..3a465f8762 100644
--- a/.github/workflows/quarkus-master-cron.yaml
+++ b/.github/workflows/quarkus-master-cron.yaml
@@ -143,7 +143,7 @@ jobs:
           java-version: '17'
       - name: Integration Tests
         run: |
-          for MODULE in $(yq -M -N e ".${{ matrix.category }}" tooling/scripts/test-categories.yaml | cut -f2 -d' '); do
+          for MODULE in $(yq -M -N e ".${{ matrix.category }}" tooling/scripts/test-categories.yaml | grep -vE '^\s*#' | cut -f2 -d' '); do
             if [[ "${MODULE}" == "null" ]]; then
               continue
             fi


[camel-quarkus] 01/02: Configure native-image-xmx for kubernetes and master-openshift native tests

Posted by ja...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit d09905e5d2e9d157ccd2312e1e5d00f367630fa0
Author: James Netherton <ja...@gmail.com>
AuthorDate: Fri Jul 28 07:08:38 2023 +0100

    Configure native-image-xmx for kubernetes and master-openshift native tests
---
 integration-tests/kubernetes/pom.xml       | 8 +++++++-
 integration-tests/master-openshift/pom.xml | 7 ++++++-
 2 files changed, 13 insertions(+), 2 deletions(-)

diff --git a/integration-tests/kubernetes/pom.xml b/integration-tests/kubernetes/pom.xml
index 7b6d9c68c7..2b476d989e 100644
--- a/integration-tests/kubernetes/pom.xml
+++ b/integration-tests/kubernetes/pom.xml
@@ -75,7 +75,13 @@
 
 
     <profiles>
-       <profile>
+        <profile>
+            <id>ci</id>
+            <properties>
+                <quarkus.native.native-image-xmx>5g</quarkus.native.native-image-xmx>
+            </properties>
+        </profile>
+        <profile>
             <id>native</id>
             <activation>
                 <property>
diff --git a/integration-tests/master-openshift/pom.xml b/integration-tests/master-openshift/pom.xml
index a87b5f371a..0a80665bad 100644
--- a/integration-tests/master-openshift/pom.xml
+++ b/integration-tests/master-openshift/pom.xml
@@ -112,7 +112,12 @@
     </dependencies>
 
     <profiles>
-
+        <profile>
+            <id>ci</id>
+            <properties>
+                <quarkus.native.native-image-xmx>5g</quarkus.native.native-image-xmx>
+            </properties>
+        </profile>
         <profile>
             <id>full</id>
             <activation>