You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
setup-go/src/main.ts

51 lines
1.6 KiB
TypeScript

import * as core from '@actions/core';
import * as tc from '@actions/tool-cache';
import * as installer from './installer';
import * as path from 'path';
export async function run() {
try {
//
// versionSpec is optional. If supplied, install / use from the tool cache
// If not supplied then problem matchers will still be setup. Useful for self-hosted.
//
let versionSpec = core.getInput('go-version');
5 years ago
5 years ago
// stable will be true unless false is the exact input
// since getting unstable versions should be explicit
5 years ago
let stable = (core.getInput('stable') || 'true').toUpperCase() === 'TRUE';
console.log(
`Setup go ${stable ? 'stable' : ''} version spec ${versionSpec}`
);
if (versionSpec) {
5 years ago
let installDir: string | undefined = tc.find('go', versionSpec);
5 years ago
if (!installDir) {
console.log(
`A version satisfying ${versionSpec} not found locally, attempting to download ...`
);
5 years ago
installDir = await installer.downloadGo(versionSpec, stable);
5 years ago
console.log('Installed');
5 years ago
}
if (installDir) {
core.exportVariable('GOROOT', installDir);
core.addPath(path.join(installDir, 'bin'));
5 years ago
console.log('Added go to the path');
5 years ago
} else {
throw new Error(
`Could not find a version that satisfied version spec: ${versionSpec}`
);
}
}
// add problem matchers
const matchersPath = path.join(__dirname, '..', 'matchers.json');
console.log(`##[add-matcher]${matchersPath}`);
} catch (error) {
core.setFailed(error.message);
}
5 years ago
}