Skip to content

Commit bd6a2d9

Browse files
committed
Don't include AnalyisCache files as action inputs
We're seeing cache determinism issues again since re-adding these. NOTE: this change makes the ScalaCompile action incompatible with RE. We'll need to re-evaluate how to make these files deterministic before exploring RE on this rule set again.
1 parent cebf0c5 commit bd6a2d9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rules/private/phases/phase_zinc_compile.bzl

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ def phase_zinc_compile(ctx, g):
7676
g.classpaths.plugin,
7777
g.classpaths.compile,
7878
g.classpaths.compiler,
79-
] + [zinc.deps_files for zinc in zincs],
79+
],
8080
)
8181

8282
outputs = [g.classpaths.jar, mains_file, apis, infos, relations, setup, stamps, used, tmp]

0 commit comments

Comments
 (0)