You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ji...@apache.org on 2023/06/06 09:18:24 UTC

[camel-quarkus] branch camel-main updated (e2fcdb5fb2 -> 447b476ece)

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

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


 discard e2fcdb5fb2 Temporary disabled openshift-master native tests, because of different kubernetes-client in C and Q
     new 447b476ece Temporary disabled openshift-master, kubernetes native tests, because of different kubernetes-client in C and Q

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (e2fcdb5fb2)
            \
             N -- N -- N   refs/heads/camel-main (447b476ece)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 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:
 integration-tests/kubernetes/pom.xml | 56 +++++++++++++++++++-----------------
 1 file changed, 29 insertions(+), 27 deletions(-)


[camel-quarkus] 01/01: Temporary disabled openshift-master, kubernetes native tests, because of different kubernetes-client in C and Q

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

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

commit 447b476ece27db6b04075d18425b735a86ba5311
Author: JiriOndrusek <on...@gmail.com>
AuthorDate: Tue Jun 6 11:04:02 2023 +0200

    Temporary disabled openshift-master, kubernetes native tests, because of different kubernetes-client in C and Q
---
 integration-tests/kubernetes/pom.xml       | 56 +++++++++++-----------
 integration-tests/master-openshift/pom.xml | 76 +++++++++++++++---------------
 2 files changed, 68 insertions(+), 64 deletions(-)

diff --git a/integration-tests/kubernetes/pom.xml b/integration-tests/kubernetes/pom.xml
index 7b6d9c68c7..80550a899c 100644
--- a/integration-tests/kubernetes/pom.xml
+++ b/integration-tests/kubernetes/pom.xml
@@ -75,33 +75,35 @@
 
 
     <profiles>
-       <profile>
-            <id>native</id>
-            <activation>
-                <property>
-                    <name>native</name>
-                </property>
-            </activation>
-            <properties>
-                <quarkus.package.type>native</quarkus.package.type>
-            </properties>
-            <build>
-                <plugins>
-                    <plugin>
-                        <groupId>org.apache.maven.plugins</groupId>
-                        <artifactId>maven-failsafe-plugin</artifactId>
-                        <executions>
-                            <execution>
-                                <goals>
-                                    <goal>integration-test</goal>
-                                    <goal>verify</goal>
-                                </goals>
-                            </execution>
-                        </executions>
-                    </plugin>
-                </plugins>
-            </build>
-        </profile>
+<!--        https://github.com/apache/camel-quarkus/issues/4957 -->
+<!--        Profile should be restored after upgrade of Quarkus-->
+<!--       <profile>-->
+<!--            <id>native</id>-->
+<!--            <activation>-->
+<!--                <property>-->
+<!--                    <name>native</name>-->
+<!--                </property>-->
+<!--            </activation>-->
+<!--            <properties>-->
+<!--                <quarkus.package.type>native</quarkus.package.type>-->
+<!--            </properties>-->
+<!--            <build>-->
+<!--                <plugins>-->
+<!--                    <plugin>-->
+<!--                        <groupId>org.apache.maven.plugins</groupId>-->
+<!--                        <artifactId>maven-failsafe-plugin</artifactId>-->
+<!--                        <executions>-->
+<!--                            <execution>-->
+<!--                                <goals>-->
+<!--                                    <goal>integration-test</goal>-->
+<!--                                    <goal>verify</goal>-->
+<!--                                </goals>-->
+<!--                            </execution>-->
+<!--                        </executions>-->
+<!--                    </plugin>-->
+<!--                </plugins>-->
+<!--            </build>-->
+<!--        </profile>-->
         <profile>
             <id>virtualDependencies</id>
             <activation>
diff --git a/integration-tests/master-openshift/pom.xml b/integration-tests/master-openshift/pom.xml
index 23cd59a20b..ba42245e71 100644
--- a/integration-tests/master-openshift/pom.xml
+++ b/integration-tests/master-openshift/pom.xml
@@ -149,43 +149,45 @@
                 </plugins>
             </build>
         </profile>
-         <profile>
-             <id>native</id>
-             <activation>
-                 <property>
-                     <name>native</name>
-                 </property>
-             </activation>
-             <properties>
-                 <quarkus.package.type>native</quarkus.package.type>
-                 <quarkus.runner>${project.build.directory}/${project.artifactId}-${project.version}-runner</quarkus.runner>
-             </properties>
-             <build>
-                 <plugins>
-                     <plugin>
-                         <groupId>org.apache.maven.plugins</groupId>
-                         <artifactId>maven-failsafe-plugin</artifactId>
-                         <executions>
-                             <execution>
-                                 <goals>
-                                     <goal>integration-test</goal>
-                                     <goal>verify</goal>
-                                 </goals>
-                             </execution>
-                         </executions>
-                         <configuration>
-                             <systemProperties>
-                                 <quarkus.runner>${quarkus.runner}</quarkus.runner>
-                             </systemProperties>
-                             <environmentVariables>
-                                 Fake KubernetesClusterService so it assumes being run from a pod named leader  &gt;
-                                 <HOSTNAME>leader</HOSTNAME>
-                             </environmentVariables>
-                         </configuration>
-                     </plugin>
-                 </plugins>
-             </build>
-         </profile>
+<!--        https://github.com/apache/camel-quarkus/issues/4957 -->
+<!--        Profile should be restored after upgrade of Quarkus-->
+<!--         <profile>-->
+<!--             <id>native</id>-->
+<!--             <activation>-->
+<!--                 <property>-->
+<!--                     <name>native</name>-->
+<!--                 </property>-->
+<!--             </activation>-->
+<!--             <properties>-->
+<!--                 <quarkus.package.type>native</quarkus.package.type>-->
+<!--                 <quarkus.runner>${project.build.directory}/${project.artifactId}-${project.version}-runner</quarkus.runner>-->
+<!--             </properties>-->
+<!--             <build>-->
+<!--                 <plugins>-->
+<!--                     <plugin>-->
+<!--                         <groupId>org.apache.maven.plugins</groupId>-->
+<!--                         <artifactId>maven-failsafe-plugin</artifactId>-->
+<!--                         <executions>-->
+<!--                             <execution>-->
+<!--                                 <goals>-->
+<!--                                     <goal>integration-test</goal>-->
+<!--                                     <goal>verify</goal>-->
+<!--                                 </goals>-->
+<!--                             </execution>-->
+<!--                         </executions>-->
+<!--                         <configuration>-->
+<!--                             <systemProperties>-->
+<!--                                 <quarkus.runner>${quarkus.runner}</quarkus.runner>-->
+<!--                             </systemProperties>-->
+<!--                             <environmentVariables>-->
+<!--                                 Fake KubernetesClusterService so it assumes being run from a pod named leader  &gt;-->
+<!--                                 <HOSTNAME>leader</HOSTNAME>-->
+<!--                             </environmentVariables>-->
+<!--                         </configuration>-->
+<!--                     </plugin>-->
+<!--                 </plugins>-->
+<!--             </build>-->
+<!--         </profile>-->
          <profile>
              <id>virtualDependencies</id>
              <activation>