Skip to content

Commit 9349f21

Browse files
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
1 parent 58a980b commit 9349f21

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

common.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ async function getVersion() {
3232
return _cached_version;
3333
}
3434

35-
// Else, look for `mach_zig_version` first
35+
// Else, look for `minimum_zig_version`
3636
match = MINIMUM_ZIG_VERSION_REGEX.exec(zon);
3737
if (match !== null) {
3838
_cached_version = match[1];

0 commit comments

Comments
 (0)