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 e3d6ab18fd47c36859a8a065e2f4f17d4cd88374 Author: James Netherton <[email protected]> AuthorDate: Tue Mar 14 09:08:45 2023 +0000 Temporarily disable tests using kubernetes-client due to #4651 --- integration-tests/kubernetes/pom.xml | 2 + integration-tests/master-openshift/pom.xml | 94 +++++++++++++++--------------- 2 files changed, 50 insertions(+), 46 deletions(-) diff --git a/integration-tests/kubernetes/pom.xml b/integration-tests/kubernetes/pom.xml index 7b6d9c68c7..2f1e60e190 100644 --- a/integration-tests/kubernetes/pom.xml +++ b/integration-tests/kubernetes/pom.xml @@ -75,6 +75,7 @@ <profiles> + <!-- TODO: https://github.com/apache/camel-quarkus/issues/4651 <profile> <id>native</id> <activation> @@ -102,6 +103,7 @@ </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 a69b488e7a..572663bb57 100644 --- a/integration-tests/master-openshift/pom.xml +++ b/integration-tests/master-openshift/pom.xml @@ -149,52 +149,54 @@ </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 > - <HOSTNAME>leader</HOSTNAME> - </environmentVariables> - </configuration> - </plugin> - </plugins> - </build> - </profile> - <profile> - <id>virtualDependencies</id> - <activation> - <property> - <name>!noVirtualDependencies</name> - </property> - </activation> - <dependencies> - <!-- The following dependencies guarantee that this module is built after them. You can update them by running `mvn process-resources -Pformat -N` from the source tree root directory --> + <!-- TODO: https://github.com/apache/camel-quarkus/issues/4651 + <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 > + <HOSTNAME>leader</HOSTNAME> + </environmentVariables> + </configuration> + </plugin> + </plugins> + </build> + </profile> + --> + <profile> + <id>virtualDependencies</id> + <activation> + <property> + <name>!noVirtualDependencies</name> + </property> + </activation> + <dependencies> + <!-- The following dependencies guarantee that this module is built after them. You can update them by running `mvn process-resources -Pformat -N` from the source tree root directory --> <dependency> <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-file-deployment</artifactId>
