0
1
Fork 0
setup-go/src/main.ts

154 lines
4.3 KiB
TypeScript
Raw Normal View History

2020-02-09 06:21:39 +01:00
import * as core from '@actions/core';
2020-03-26 17:40:41 +01:00
import * as io from '@actions/io';
2020-02-09 06:21:39 +01:00
import * as installer from './installer';
2022-03-14 17:21:30 +01:00
import * as semver from 'semver';
2020-03-27 05:55:12 +01:00
import path from 'path';
import {restoreCache} from './cache-restore';
import {isCacheFeatureAvailable} from './cache-utils';
2020-03-27 05:55:12 +01:00
import cp from 'child_process';
import fs from 'fs';
2022-08-12 12:29:48 +02:00
import os from 'os';
2020-02-09 06:21:39 +01:00
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.
//
2022-05-12 10:04:39 +02:00
const versionSpec = resolveVersionInput();
2020-02-09 14:47:38 +01:00
const cache = core.getBooleanInput('cache');
core.info(`Setup go version spec ${versionSpec}`);
2020-02-10 04:39:44 +01:00
2022-08-12 12:29:48 +02:00
let arch = core.getInput('architecture');
if (!arch) {
arch = os.arch();
}
2020-02-09 06:21:39 +01:00
if (versionSpec) {
const token = core.getInput('token');
const auth = !token ? undefined : `token ${token}`;
2020-02-09 06:21:39 +01:00
const checkLatest = core.getBooleanInput('check-latest');
2022-08-12 12:29:48 +02:00
const installDir = await installer.getGo(
versionSpec,
checkLatest,
auth,
arch
);
2020-02-09 06:29:21 +01:00
const installDirVersion = path.basename(path.dirname(installDir));
core.addPath(path.join(installDir, 'bin'));
core.info('Added go to the path');
2020-03-26 17:02:52 +01:00
const version = installer.makeSemver(installDirVersion);
2022-03-14 17:21:30 +01:00
// Go versions less than 1.9 require GOROOT to be set
if (semver.lt(version, '1.9.0')) {
2022-03-14 17:23:03 +01:00
core.info('Setting GOROOT for Go version < 1.9');
2022-03-14 17:21:30 +01:00
core.exportVariable('GOROOT', installDir);
}
const added = await addBinToPath();
core.debug(`add bin ${added}`);
2022-05-03 14:43:40 +02:00
core.info(`Successfully set up Go version ${versionSpec}`);
2020-02-09 06:21:39 +01:00
}
const goPath = await io.which('go');
const goVersion = (cp.execSync(`${goPath} version`) || '').toString();
2023-01-20 01:28:58 +01:00
if (cache && isCacheFeatureAvailable()) {
const packageManager = 'default';
const cacheDependencyPath = core.getInput('cache-dependency-path');
2023-01-20 10:28:57 +01:00
await restoreCache(
parseGoVersion(goVersion),
packageManager,
cacheDependencyPath
);
}
2020-02-09 06:21:39 +01:00
// add problem matchers
const matchersPath = path.join(__dirname, '../..', 'matchers.json');
core.info(`##[add-matcher]${matchersPath}`);
2020-03-31 16:32:03 +02:00
// output the version actually being used
core.info(goVersion);
2020-04-06 14:42:55 +02:00
core.setOutput('go-version', parseGoVersion(goVersion));
2020-04-06 14:42:55 +02:00
core.startGroup('go env');
const goEnv = (cp.execSync(`${goPath} env`) || '').toString();
core.info(goEnv);
2020-04-06 14:42:55 +02:00
core.endGroup();
2020-02-09 06:21:39 +01:00
} catch (error) {
core.setFailed(error.message);
}
2020-02-09 06:29:21 +01:00
}
2020-03-26 17:02:52 +01:00
2020-03-27 05:55:12 +01:00
export async function addBinToPath(): Promise<boolean> {
2020-03-26 17:02:52 +01:00
let added = false;
const g = await io.which('go');
core.debug(`which go :${g}:`);
2020-03-26 17:40:41 +01:00
if (!g) {
core.debug('go not in the path');
2020-03-26 17:40:41 +01:00
return added;
}
2020-03-26 17:17:32 +01:00
const buf = cp.execSync('go env GOPATH');
2022-04-17 17:36:51 +02:00
if (buf.length > 1) {
const gp = buf.toString().trim();
core.debug(`go env GOPATH :${gp}:`);
if (!fs.existsSync(gp)) {
// some of the hosted images have go install but not profile dir
core.debug(`creating ${gp}`);
2022-03-28 11:54:44 +02:00
await io.mkdirP(gp);
}
2020-03-26 17:23:38 +01:00
const bp = path.join(gp, 'bin');
if (!fs.existsSync(bp)) {
core.debug(`creating ${bp}`);
2022-03-28 11:54:44 +02:00
await io.mkdirP(bp);
2020-03-26 17:54:21 +01:00
}
core.addPath(bp);
added = true;
2020-03-26 17:02:52 +01:00
}
return added;
}
2020-03-27 05:55:12 +01:00
export function parseGoVersion(versionString: string): string {
// get the installed version as an Action output
// based on go/src/cmd/go/internal/version/version.go:
// fmt.Printf("go version %s %s/%s\n", runtime.Version(), runtime.GOOS, runtime.GOARCH)
// expecting go<version> for runtime.Version()
return versionString.split(' ')[2].slice('go'.length);
}
2022-05-12 10:04:39 +02:00
function resolveVersionInput(): string {
let version = core.getInput('go-version');
const versionFilePath = core.getInput('go-version-file');
if (version && versionFilePath) {
core.warning(
'Both go-version and go-version-file inputs are specified, only go-version will be used'
);
}
if (version) {
return version;
}
if (versionFilePath) {
if (!fs.existsSync(versionFilePath)) {
throw new Error(
`The specified go version file at: ${versionFilePath} does not exist`
);
}
version = installer.parseGoVersionFile(versionFilePath);
}
return version;
}