Skip to content

Commit

Permalink
Disable tests using containers on macOS in CI (#10038)
Browse files Browse the repository at this point in the history
  • Loading branch information
snazy authored Dec 4, 2024
1 parent b93bee3 commit 8dfc0de
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions events/ri/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@
* limitations under the License.
*/

import org.apache.tools.ant.taskdefs.condition.Os

plugins {
alias(libs.plugins.quarkus)
id("nessie-conventions-quarkus")
Expand Down Expand Up @@ -76,3 +78,8 @@ listOf("checkstyleTest", "compileTestJava").forEach { name ->
}

tasks.named("quarkusDependenciesBuild").configure { dependsOn("processJandexIndex") }

// Issue w/ testcontainers/podman in GH workflows :(
if (Os.isFamily(Os.FAMILY_MAC) && System.getenv("CI") != null) {
tasks.withType<Test>().configureEach { this.enabled = false }
}

0 comments on commit 8dfc0de

Please sign in to comment.