This is an automated email from the ASF dual-hosted git repository. github-bot pushed a commit to branch quarkus-main in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
commit 9f6e4b87a77db671d3b7f2a272f100012174dcbb Author: James Netherton <jamesnether...@gmail.com> AuthorDate: Mon Dec 6 16:21:36 2021 +0000 Disable vertx-kafka integration tests and native build due to #3358 --- integration-tests/vertx-kafka/pom.xml | 2 ++ .../org/apache/camel/quarkus/component/vertx/kafka/it/VertxKafkaIT.java | 2 ++ .../apache/camel/quarkus/component/vertx/kafka/it/VertxKafkaTest.java | 2 ++ 3 files changed, 6 insertions(+) diff --git a/integration-tests/vertx-kafka/pom.xml b/integration-tests/vertx-kafka/pom.xml index 978b597..b7c9bee 100644 --- a/integration-tests/vertx-kafka/pom.xml +++ b/integration-tests/vertx-kafka/pom.xml @@ -59,6 +59,7 @@ </dependencies> <profiles> + <!-- TODO: https://github.com/apache/camel-quarkus/issues/3358 <profile> <id>native</id> <activation> @@ -86,6 +87,7 @@ </plugins> </build> </profile> + --> <profile> <id>virtualDependencies</id> <activation> diff --git a/integration-tests/vertx-kafka/src/test/java/org/apache/camel/quarkus/component/vertx/kafka/it/VertxKafkaIT.java b/integration-tests/vertx-kafka/src/test/java/org/apache/camel/quarkus/component/vertx/kafka/it/VertxKafkaIT.java index b969afc..c98665c 100644 --- a/integration-tests/vertx-kafka/src/test/java/org/apache/camel/quarkus/component/vertx/kafka/it/VertxKafkaIT.java +++ b/integration-tests/vertx-kafka/src/test/java/org/apache/camel/quarkus/component/vertx/kafka/it/VertxKafkaIT.java @@ -16,9 +16,11 @@ */ package org.apache.camel.quarkus.component.vertx.kafka.it; +import io.quarkus.test.junit.DisabledOnNativeImage; import io.quarkus.test.junit.NativeImageTest; @NativeImageTest +@DisabledOnNativeImage("https://github.com/apache/camel-quarkus/issues/3358") class VertxKafkaIT extends VertxKafkaTest { } diff --git a/integration-tests/vertx-kafka/src/test/java/org/apache/camel/quarkus/component/vertx/kafka/it/VertxKafkaTest.java b/integration-tests/vertx-kafka/src/test/java/org/apache/camel/quarkus/component/vertx/kafka/it/VertxKafkaTest.java index 28c459f..ebf11f1 100644 --- a/integration-tests/vertx-kafka/src/test/java/org/apache/camel/quarkus/component/vertx/kafka/it/VertxKafkaTest.java +++ b/integration-tests/vertx-kafka/src/test/java/org/apache/camel/quarkus/component/vertx/kafka/it/VertxKafkaTest.java @@ -20,12 +20,14 @@ import io.quarkus.test.common.QuarkusTestResource; import io.quarkus.test.junit.QuarkusTest; import io.restassured.RestAssured; import io.restassured.http.ContentType; +import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; import static org.hamcrest.CoreMatchers.is; @QuarkusTest @QuarkusTestResource(VertxKafkaTestResource.class) +@Disabled("https://github.com/apache/camel-quarkus/issues/3358") class VertxKafkaTest { @Test