@starship-ci/client
Version:
Starship CI Client
55 lines (54 loc) • 2.16 kB
JavaScript
import chalk from 'chalk';
import * as os from 'os';
import * as shell from 'shelljs';
export class StarshipInstaller {
installations = {
docker: {
mac: 'Please install Docker. Follow: https://docs.docker.com/desktop/install/mac-install/',
linux: 'Please install Docker. Follow: https://docs.docker.com/engine/install/ubuntu/'
},
kubectl: {
mac: 'brew install kubectl',
linux: `curl -Lks "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl" > ~/.local/bin/kubectl && chmod +x ~/.local/bin/kubectl`
},
helm: {
mac: 'brew install helm',
linux: 'curl https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3 | bash'
}
};
async checkAndInstallBinary(binaryName) {
if (!shell.which(binaryName)) {
console.log(`${binaryName} is not installed`);
await this.installBinary(binaryName);
if (!shell.which(binaryName)) {
console.log(chalk.red(`Installation of ${binaryName} failed. Please install ${binaryName} manually.`));
process.exit(1);
}
}
}
async checkAndInstallDependencies() {
try {
for (const dependency of Object.keys(this.installations)) {
console.log(chalk.yellow(`Checking ${dependency}...`));
await this.checkAndInstallBinary(dependency);
}
console.log(chalk.green('All dependencies are installed!! Good to go!!'));
}
catch (err) {
console.error(chalk.red(`Error installing dependencies: ${err}`));
}
}
async installBinary(binaryName) {
const platform = os.platform();
const installation = this.installations[binaryName];
if (platform === 'darwin') {
await this.runInstallation(installation.mac);
}
else if (platform === 'linux') {
await this.runInstallation(installation.linux);
}
}
async runInstallation(command) {
shell.exec(command);
}
}