Skip to content

Commit ac77218

Browse files
committed
native
1 parent 571b87e commit ac77218

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

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

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,3 +40,11 @@ graalvmNative {
4040
}
4141
toolchainDetection.set(false)
4242
}
43+
44+
// GraalVM Native Build Tools plugin is not yet compatible with configuration cache
45+
// https://github.com/graalvm/native-build-tools/issues/477
46+
tasks.configureEach {
47+
if (name.startsWith("native")) {
48+
notCompatibleWithConfigurationCache("GraalVM Native Build Tools plugin is not compatible with configuration cache")
49+
}
50+
}

integration-tests/graal/build.gradle.kts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,3 +37,11 @@ graalvmNative {
3737
}
3838
toolchainDetection.set(false)
3939
}
40+
41+
// GraalVM Native Build Tools plugin is not yet compatible with configuration cache
42+
// https://github.com/graalvm/native-build-tools/issues/477
43+
tasks.configureEach {
44+
if (name.startsWith("native")) {
45+
notCompatibleWithConfigurationCache("GraalVM Native Build Tools plugin is not compatible with configuration cache")
46+
}
47+
}

0 commit comments

Comments
 (0)