-
Notifications
You must be signed in to change notification settings - Fork 49
/
postinstall.js
79 lines (67 loc) · 2.69 KB
/
postinstall.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
// @ts-check
'use strict';
const os = require('os');
const fs = require('fs');
const path = require('path');
const util = require('util');
const child_process = require('child_process');
const download = require('./download');
const fsExists = util.promisify(fs.exists);
const mkdir = util.promisify(fs.mkdir);
const exec = util.promisify(child_process.exec);
const forceInstall = process.argv.includes('--force');
if (forceInstall) {
console.log('--force, ignoring caches');
}
const VERSION = 'v13.0.0-10';
const MULTI_ARCH_LINUX_VERSION = 'v13.0.0-4';// use this for arm-unknown-linux-gnueabihf and powerpc64le-unknown-linux-gnu until we can fix https://github.com/microsoft/ripgrep-prebuilt/issues/24 and https://github.com/microsoft/ripgrep-prebuilt/issues/32 respectively.
const BIN_PATH = path.join(__dirname, '../bin');
process.on('unhandledRejection', (reason, promise) => {
console.log('Unhandled rejection: ', promise, 'reason:', reason);
});
async function getTarget() {
const arch = process.env.npm_config_arch || os.arch();
switch (os.platform()) {
case 'darwin':
return arch === 'arm64' ? 'aarch64-apple-darwin' :
'x86_64-apple-darwin';
case 'win32':
return arch === 'x64' ? 'x86_64-pc-windows-msvc' :
arch === 'arm' ? 'aarch64-pc-windows-msvc' :
'i686-pc-windows-msvc';
case 'linux':
return arch === 'x64' ? 'x86_64-unknown-linux-musl' :
arch === 'arm' ? 'arm-unknown-linux-gnueabihf' :
arch === 'armv7l' ? 'arm-unknown-linux-gnueabihf' :
arch === 'arm64' ? 'aarch64-unknown-linux-musl':
arch === 'ppc64' ? 'powerpc64le-unknown-linux-gnu' :
arch === 's390x' ? 's390x-unknown-linux-gnu' :
'i686-unknown-linux-musl'
default: throw new Error('Unknown platform: ' + os.platform());
}
}
async function main() {
const binExists = await fsExists(BIN_PATH);
if (!forceInstall && binExists) {
console.log('bin/ folder already exists, exiting');
process.exit(0);
}
if (!binExists) {
await mkdir(BIN_PATH);
}
const target = await getTarget();
const opts = {
version: target === "arm-unknown-linux-gnueabihf" || target === "powerpc64le-unknown-linux-gnu" || target === "s390x-unknown-linux-gnu" ? MULTI_ARCH_LINUX_VERSION: VERSION,
token: process.env['GITHUB_TOKEN'],
target: await getTarget(),
destDir: BIN_PATH,
force: forceInstall
};
try {
await download(opts);
} catch (err) {
console.error(`Downloading ripgrep failed: ${err.stack}`);
process.exit(1);
}
}
main();