Skip to content

Commit e98c00c

Browse files
adwsinghrhernandez35
authored andcommitted
Disable gradle task caching for fuzz tests
1 parent 0bb249f commit e98c00c

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

buildSrc/src/main/kotlin/smithy-java.fuzz-test.gradle.kts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ tasks.register<Test>("fuzz") {
2121
description = "Run fuzz tests using Jazzer"
2222
group = "verification"
2323

24+
// Never cache fuzz tests - they should always run when requested
25+
outputs.upToDateWhen { false }
26+
2427
val fuzzSourceSet = project.the<SourceSetContainer>()["fuzz"]
2528
testClassesDirs = fuzzSourceSet.output.classesDirs
2629
classpath = fuzzSourceSet.runtimeClasspath

0 commit comments

Comments
 (0)