From acfa5a5219ee4856021550af195ca8373d0f4eed Mon Sep 17 00:00:00 2001 From: Michal Jurc Date: Mon, 22 Apr 2024 20:18:58 +0200 Subject: [PATCH] Disable tests on aarch64 due to no CrunchyDB there (#1757) * Disabling service binding tests on aarch64 as the CrunchyDB operator is not yet supported there. Tracking issue: https://github.com/quarkus-qe/quarkus-test-suite/issues/1755 --- .../io/quarkus/ts/sb/postgresql/OpenShiftPostgreSqlSbIT.java | 1 + .../quarkus/ts/sb/reactive/OpenShiftPostgreSqlReactiveSbIT.java | 1 + 2 files changed, 2 insertions(+) diff --git a/service-binding/postgresql-crunchy-classic/src/test/java/io/quarkus/ts/sb/postgresql/OpenShiftPostgreSqlSbIT.java b/service-binding/postgresql-crunchy-classic/src/test/java/io/quarkus/ts/sb/postgresql/OpenShiftPostgreSqlSbIT.java index ccb0923d8..51e40c563 100644 --- a/service-binding/postgresql-crunchy-classic/src/test/java/io/quarkus/ts/sb/postgresql/OpenShiftPostgreSqlSbIT.java +++ b/service-binding/postgresql-crunchy-classic/src/test/java/io/quarkus/ts/sb/postgresql/OpenShiftPostgreSqlSbIT.java @@ -24,6 +24,7 @@ @OpenShiftScenario(deployment = OpenShiftDeploymentStrategy.UsingOpenShiftExtensionAndDockerBuildStrategy) @DisabledIfSystemProperty(named = "ts.ibm-z-p.missing.services.excludes", matches = "true", disabledReason = "Crunchy Postgres operator not available on s390x & ppc64le.") +@DisabledIfSystemProperty(named = "ts.arm.missing.services.excludes", matches = "true", disabledReason = "https://github.com/quarkus-qe/quarkus-test-suite/issues/1755") public class OpenShiftPostgreSqlSbIT { @Inject diff --git a/service-binding/postgresql-crunchy-reactive/src/test/java/io/quarkus/ts/sb/reactive/OpenShiftPostgreSqlReactiveSbIT.java b/service-binding/postgresql-crunchy-reactive/src/test/java/io/quarkus/ts/sb/reactive/OpenShiftPostgreSqlReactiveSbIT.java index 4c657b734..138535dce 100644 --- a/service-binding/postgresql-crunchy-reactive/src/test/java/io/quarkus/ts/sb/reactive/OpenShiftPostgreSqlReactiveSbIT.java +++ b/service-binding/postgresql-crunchy-reactive/src/test/java/io/quarkus/ts/sb/reactive/OpenShiftPostgreSqlReactiveSbIT.java @@ -25,6 +25,7 @@ @OpenShiftScenario(deployment = OpenShiftDeploymentStrategy.UsingOpenShiftExtensionAndDockerBuildStrategy) @DisabledIfSystemProperty(named = "ts.ibm-z-p.missing.services.excludes", matches = "true", disabledReason = "Crunchy Postgres operator not available on s390x & ppc64le.") +@DisabledIfSystemProperty(named = "ts.arm.missing.services.excludes", matches = "true", disabledReason = "https://github.com/quarkus-qe/quarkus-test-suite/issues/1755") public class OpenShiftPostgreSqlReactiveSbIT { private static final String PG_CLUSTER_YML = "pg-cluster.yml";