Skip to content

Commit

Permalink
Revert CI changes
Browse files Browse the repository at this point in the history
  • Loading branch information
adutra committed May 19, 2023
1 parent e019a57 commit 6311457
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion compatibility/compatibility-tests/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,10 @@ tasks.withType<Test>().configureEach {
systemProperty("junit.jupiter.extensions.autodetection.enabled", "true")
}

// Compatibility tests fail on macOS with the following message: `libc++abi: terminating
// with uncaught exception of type std::__1::system_error: mutex lock failed: Invalid argument`
//
// Compatibility tests fail, because Windows not supported by testcontainers (logged message)
if (Os.isFamily(Os.FAMILY_WINDOWS) && System.getenv("CI") != null) {
if ((Os.isFamily(Os.FAMILY_MAC) || Os.isFamily(Os.FAMILY_WINDOWS)) && System.getenv("CI") != null) {
tasks.withType<Test>().configureEach { this.enabled = false }
}

0 comments on commit 6311457

Please sign in to comment.