Skip to content

Commit 8c358ba

Browse files
Duhemmadpi2
authored andcommitted
Disable Develocity Build Cache in compilation tests
At the moment, the Develocity Build Cache does not work properly with our compilation tests, because the cache key does not take into account the sources that are read in the tests. Keeping the build cache would lead to false cache hits, so it is better to disable it for the time being.
1 parent da0f714 commit 8c358ba

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

project/Build.scala

+4
Original file line numberDiff line numberDiff line change
@@ -908,6 +908,10 @@ object Build {
908908
sjsSources
909909
} (Set(scalaJSIRSourcesJar)).toSeq
910910
}.taskValue,
911+
912+
// Develocity's Build Cache does not work with our compilation tests
913+
// at the moment.
914+
Test / develocityBuildCacheClient := None,
911915
)
912916

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

0 commit comments

Comments
 (0)