-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.js
40 lines (36 loc) · 1.52 KB
/
index.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
const core = require('@actions/core');
const os = require('os');
const { execSync } = require('child_process');
const { mkdirSync, readFileSync, writeFileSync } = require('fs');
function exec(cmd) {
console.info(`> ${cmd}`);
execSync(cmd, { stdio: "inherit" });
}
try {
const version = core.getInput('version');
let platform = os.platform();
console.log(`Installing foundationdb ${version} (${platform})!`);
let base_url = `https://github.com/apple/foundationdb/releases/download/${version}`;
switch (platform) {
case 'linux': {
let client_url = `${base_url}/foundationdb-clients_${version}-1_amd64.deb`;
exec(`curl -L -O ${client_url}`);
exec(`sudo dpkg -i foundationdb-clients_${version}-1_amd64.deb`);
let server_url = `${base_url}/foundationdb-server_${version}-1_amd64.deb`;
exec(`curl -L -O ${server_url}`);
exec(`sudo dpkg -i foundationdb-server_${version}-1_amd64.deb`);
break;
}
case 'darwin': {
let url = `${base_url}/FoundationDB-${version}_x86_64.pkg`;
exec(`curl -L -O ${url}`);
exec(`sudo installer -pkg FoundationDB-${version}_x86_64.pkg -target /`);
break;
}
default:
throw Error(`Unsupported OS platform: ${platform}. Supported options are linux and darwin.`
+ ` Check that this action is being used with either ubuntu-latest or macos-latest.`);
}
} catch (error) {
core.setFailed(error.message);
}