-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathcommon.js
164 lines (145 loc) · 4.31 KB
/
common.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
const os = require('os');
const fs = require('fs');
const path = require('path');
const core = require('@actions/core');
const github = require('@actions/github');
const exec = require('@actions/exec');
const VERSIONS_JSON = 'https://ziglang.org/download/index.json';
const MACH_VERSIONS_JSON = 'https://pkg.machengine.org/zig/index.json';
const CACHE_PREFIX = "setup-zig-global-cache-";
const MINIMUM_ZIG_VERSION_REGEX = /\.\s*minimum_zig_version\s*=\s*"(.*?)"/;
let _cached_version = null;
async function getVersion() {
if (_cached_version != null) {
return _cached_version;
}
let raw = core.getInput('version');
if (raw === '') {
try {
const zon = await fs.promises.readFile('build.zig.zon', 'utf8');
const match = MINIMUM_ZIG_VERSION_REGEX.exec(zon);
if (match !== null) {
_cached_version = match[1];
return _cached_version;
}
core.info('Failed to find minimum_zig_version in build.zig.zon (using latest)');
} catch (e) {
core.info(`Failed to read build.zig.zon (using latest): ${e}`);
}
raw = 'latest';
}
if (raw === 'master') {
const resp = await fetch(VERSIONS_JSON);
const versions = await resp.json();
_cached_version = versions['master'].version;
} else if (raw === 'latest') {
const resp = await fetch(VERSIONS_JSON);
const versions = await resp.json();
let latest = null;
let latest_major;
let latest_minor;
let latest_patch;
for (const version in versions) {
if (version === 'master') continue;
const [major_str, minor_str, patch_str] = version.split('.')
const major = Number(major_str);
const minor = Number(minor_str);
const patch = Number(patch_str);
if (latest === null) {
latest = version;
latest_major = major;
latest_minor = minor;
latest_patch = patch;
continue;
}
if (major > latest_major ||
(major == latest_major && minor > latest_minor) ||
(major == latest_major && minor == latest_minor && patch > latest_patch))
{
latest = version;
latest_major = major;
latest_minor = minor;
latest_patch = patch;
}
}
_cached_version = latest;
} else if (raw.includes("mach")) {
const resp = await fetch(MACH_VERSIONS_JSON);
const versions = await resp.json();
if (!(raw in versions)) {
throw new Error(`Mach nominated version '${raw}' not found`);
}
_cached_version = versions[raw].version;
} else {
_cached_version = raw;
}
return _cached_version;
}
async function getTarballName() {
const version = await getVersion();
let arch = {
arm: 'armv7a',
arm64: 'aarch64',
loong64: 'loongarch64',
mips: 'mips',
mipsel: 'mipsel',
mips64: 'mips64',
mips64el: 'mips64el',
ppc64: 'powerpc64',
riscv64: 'riscv64',
s390x: 's390x',
ia32: 'x86',
x64: 'x86_64',
}[os.arch()];
// For some incomprehensible reason, Node.js's brain-damaged build system explicitly throws away
// the knowledge that it is building for ppc64le, so os.arch() will identify it as ppc64 even on
// little endian.
if (arch === 'powerpc64' && os.endianness() === 'LE') {
arch = 'powerpc64le';
}
const platform = {
aix: 'aix',
android: 'android',
freebsd: 'freebsd',
linux: 'linux',
darwin: 'macos',
openbsd: 'openbsd',
sunos: 'solaris',
win32: 'windows',
}[os.platform()];
return `zig-${platform}-${arch}-${version}`;
}
async function getTarballExt() {
return {
linux: '.tar.xz',
darwin: '.tar.xz',
win32: '.zip',
}[os.platform()];
}
async function getCachePrefix() {
const tarball_name = await getTarballName();
const job_name = github.context.job.replaceAll(/[^\w]/g, "_");
return `setup-zig-cache-${job_name}-${tarball_name}-`;
}
async function getZigCachePath() {
let env_output = '';
await exec.exec('zig', ['env'], {
listeners: {
stdout: (data) => {
env_output += data.toString();
},
},
});
return JSON.parse(env_output)['global_cache_dir'];
}
async function getTarballCachePath() {
return path.join(process.env['RUNNER_TEMP'], await getTarballName());
}
module.exports = {
getVersion,
getTarballName,
getTarballExt,
getCachePrefix,
getZigCachePath,
getTarballCachePath,
};