You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Don't use the tool cache on GitHub-hosted runners by default
This introduces performance problems due to deficiencies in the
filesystem layout of GitHub-hosted runners; see #34. The tool cache
isn't very useful on such runners anyway, but I've added an option to
override the default.
Also add some more logging (related: #45).
Resolves: #34
Copy file name to clipboardExpand all lines: action.yml
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -20,6 +20,10 @@ inputs:
20
20
description: 'The maximum permitted size of the global Zig cache directory, in MiB. When the cache directory exceeds this size, it is cleared. Default is 2048 (2 GiB). 0 means no limit.'
21
21
required: true
22
22
default: 2048
23
+
use-tool-cache:
24
+
description: 'Override whether to use the tool cache when caching Zig installations. Default is false for GitHub-hosted runners, true for other runners.'
0 commit comments