Skip to content

Commit d6e7e6e

Browse files
authored
Fix intermittent Windows build failure in GraalVM integration tests (#8013)
1 parent c8ba093 commit d6e7e6e

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

integration-tests/graal-incubating/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ graalvmNative {
4949
// GraalVM Native Build Tools plugin is not yet compatible with configuration cache
5050
// https://github.com/graalvm/native-build-tools/issues/477
5151
tasks.configureEach {
52-
if (name.startsWith("native")) {
52+
if (name.startsWith("native") || name == "test" || name == "collectReachabilityMetadata") {
5353
notCompatibleWithConfigurationCache("GraalVM Native Build Tools plugin is not compatible with configuration cache")
5454
}
5555
}

integration-tests/graal/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ graalvmNative {
4646
// GraalVM Native Build Tools plugin is not yet compatible with configuration cache
4747
// https://github.com/graalvm/native-build-tools/issues/477
4848
tasks.configureEach {
49-
if (name.startsWith("native")) {
49+
if (name.startsWith("native") || name == "test" || name == "collectReachabilityMetadata") {
5050
notCompatibleWithConfigurationCache("GraalVM Native Build Tools plugin is not compatible with configuration cache")
5151
}
5252
}

0 commit comments

Comments
 (0)