Skip to content

Commit 8b9df04

Browse files
committed
Deactivate test caching for all projects
1 parent e4fd2ac commit 8b9df04

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

project/Build.scala

+4-5
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,10 @@ object Build {
356356
.withMaxFailures(10)
357357
.withClassesFilter((className, _) => !noRetryTestClasses.contains(className))
358358
)
359-
}
359+
},
360+
// Deactivate Develocity's test caching because it caches all tests or nothing.
361+
// Also at the moment, it does not take compilation files as inputs.
362+
Test / develocityBuildCacheClient := None,
360363
)
361364

362365
// Settings shared globally (scoped in Global). Used in build.sbt
@@ -1015,10 +1018,6 @@ object Build {
10151018
sjsSources
10161019
} (Set(scalaJSIRSourcesJar)).toSeq
10171020
}.taskValue,
1018-
1019-
// Develocity's Build Cache does not work with our compilation tests
1020-
// at the moment: it does not take compilation files as inputs.
1021-
Test / develocityBuildCacheClient := None,
10221021
)
10231022

10241023
def insertClasspathInArgs(args: List[String], cp: String): List[String] = {

0 commit comments

Comments
 (0)