2020-02-09 13:21:39 +08:00
|
|
|
import * as core from '@actions/core';
|
2020-03-27 00:40:41 +08:00
|
|
|
import * as io from '@actions/io';
|
2020-02-09 13:21:39 +08:00
|
|
|
import * as installer from './installer';
|
2022-03-15 00:21:30 +08:00
|
|
|
import * as semver from 'semver';
|
2020-03-27 12:55:12 +08:00
|
|
|
import path from 'path';
|
2022-05-25 18:07:29 +08:00
|
|
|
import {restoreCache} from './cache-restore';
|
2022-12-12 17:58:49 +08:00
|
|
|
import {isCacheFeatureAvailable} from './cache-utils';
|
2020-03-27 12:55:12 +08:00
|
|
|
import cp from 'child_process';
|
|
|
|
import fs from 'fs';
|
2022-08-12 18:29:48 +08:00
|
|
|
import os from 'os';
|
2020-02-09 13:21:39 +08: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 16:04:39 +08:00
|
|
|
const versionSpec = resolveVersionInput();
|
2020-02-09 21:47:38 +08:00
|
|
|
|
2022-05-25 18:07:29 +08:00
|
|
|
const cache = core.getBooleanInput('cache');
|
2022-02-28 15:16:32 +08:00
|
|
|
core.info(`Setup go version spec ${versionSpec}`);
|
2020-02-10 11:39:44 +08:00
|
|
|
|
2022-08-12 18:29:48 +08:00
|
|
|
let arch = core.getInput('architecture');
|
|
|
|
|
|
|
|
if (!arch) {
|
|
|
|
arch = os.arch();
|
|
|
|
}
|
|
|
|
|
2020-02-09 13:21:39 +08:00
|
|
|
if (versionSpec) {
|
2020-06-29 23:41:13 +08:00
|
|
|
let token = core.getInput('token');
|
2022-11-02 19:21:18 +08:00
|
|
|
let auth = !token ? undefined : `token ${token}`;
|
2020-02-09 13:21:39 +08:00
|
|
|
|
2022-02-09 19:59:04 +08:00
|
|
|
const checkLatest = core.getBooleanInput('check-latest');
|
2022-12-12 17:58:49 +08:00
|
|
|
|
2022-08-12 18:29:48 +08:00
|
|
|
const installDir = await installer.getGo(
|
|
|
|
versionSpec,
|
|
|
|
checkLatest,
|
|
|
|
auth,
|
|
|
|
arch
|
|
|
|
);
|
2020-02-09 13:29:21 +08:00
|
|
|
|
2022-12-12 17:58:49 +08:00
|
|
|
const installDirVersion = path.basename(path.dirname(installDir));
|
|
|
|
|
2020-06-29 23:41:13 +08:00
|
|
|
core.addPath(path.join(installDir, 'bin'));
|
|
|
|
core.info('Added go to the path');
|
2020-03-27 00:02:52 +08:00
|
|
|
|
2022-12-12 17:58:49 +08:00
|
|
|
const version = installer.makeSemver(installDirVersion);
|
2022-03-15 00:21:30 +08:00
|
|
|
// Go versions less than 1.9 require GOROOT to be set
|
|
|
|
if (semver.lt(version, '1.9.0')) {
|
2022-03-15 00:23:03 +08:00
|
|
|
core.info('Setting GOROOT for Go version < 1.9');
|
2022-03-15 00:21:30 +08:00
|
|
|
core.exportVariable('GOROOT', installDir);
|
|
|
|
}
|
|
|
|
|
2020-06-29 23:41:13 +08:00
|
|
|
let added = await addBinToPath();
|
|
|
|
core.debug(`add bin ${added}`);
|
2022-05-03 20:43:40 +08:00
|
|
|
core.info(`Successfully set up Go version ${versionSpec}`);
|
2020-02-09 13:21:39 +08:00
|
|
|
}
|
|
|
|
|
2022-05-25 18:07:29 +08:00
|
|
|
if (cache && isCacheFeatureAvailable()) {
|
|
|
|
const packageManager = 'default';
|
|
|
|
const cacheDependencyPath = core.getInput('cache-dependency-path');
|
2023-01-20 08:21:36 +08:00
|
|
|
core.info(`Version spec is ${versionSpec}`)
|
2022-10-18 00:33:22 +08:00
|
|
|
await restoreCache(versionSpec, packageManager, cacheDependencyPath);
|
2022-05-25 18:07:29 +08:00
|
|
|
}
|
|
|
|
|
2020-02-09 13:21:39 +08:00
|
|
|
// add problem matchers
|
2022-05-25 18:07:29 +08:00
|
|
|
const matchersPath = path.join(__dirname, '../..', 'matchers.json');
|
2020-06-29 23:41:13 +08:00
|
|
|
core.info(`##[add-matcher]${matchersPath}`);
|
2020-03-31 22:32:03 +08:00
|
|
|
|
|
|
|
// output the version actually being used
|
|
|
|
let goPath = await io.which('go');
|
2020-03-31 22:40:32 +08:00
|
|
|
let goVersion = (cp.execSync(`${goPath} version`) || '').toString();
|
2020-06-29 23:41:13 +08:00
|
|
|
core.info(goVersion);
|
2020-04-06 20:42:55 +08:00
|
|
|
|
2022-04-09 00:23:10 +08:00
|
|
|
core.setOutput('go-version', parseGoVersion(goVersion));
|
|
|
|
|
2020-04-06 20:42:55 +08:00
|
|
|
core.startGroup('go env');
|
|
|
|
let goEnv = (cp.execSync(`${goPath} env`) || '').toString();
|
2020-06-29 23:41:13 +08:00
|
|
|
core.info(goEnv);
|
2020-04-06 20:42:55 +08:00
|
|
|
core.endGroup();
|
2020-02-09 13:21:39 +08:00
|
|
|
} catch (error) {
|
|
|
|
core.setFailed(error.message);
|
|
|
|
}
|
2020-02-09 13:29:21 +08:00
|
|
|
}
|
2020-03-27 00:02:52 +08:00
|
|
|
|
2020-03-27 12:55:12 +08:00
|
|
|
export async function addBinToPath(): Promise<boolean> {
|
2020-03-27 00:02:52 +08:00
|
|
|
let added = false;
|
2020-03-27 00:40:41 +08:00
|
|
|
let g = await io.which('go');
|
2020-06-29 23:41:13 +08:00
|
|
|
core.debug(`which go :${g}:`);
|
2020-03-27 00:40:41 +08:00
|
|
|
if (!g) {
|
2020-06-29 23:41:13 +08:00
|
|
|
core.debug('go not in the path');
|
2020-03-27 00:40:41 +08:00
|
|
|
return added;
|
|
|
|
}
|
2020-03-27 00:17:32 +08:00
|
|
|
|
2020-03-27 00:40:41 +08:00
|
|
|
let buf = cp.execSync('go env GOPATH');
|
2022-04-17 23:36:51 +08:00
|
|
|
if (buf.length > 1) {
|
2020-03-27 00:40:41 +08:00
|
|
|
let gp = buf.toString().trim();
|
2020-06-29 23:41:13 +08:00
|
|
|
core.debug(`go env GOPATH :${gp}:`);
|
2020-03-27 01:00:45 +08:00
|
|
|
if (!fs.existsSync(gp)) {
|
|
|
|
// some of the hosted images have go install but not profile dir
|
2020-06-29 23:41:13 +08:00
|
|
|
core.debug(`creating ${gp}`);
|
2022-03-28 17:54:44 +08:00
|
|
|
await io.mkdirP(gp);
|
2020-03-27 01:00:45 +08:00
|
|
|
}
|
2020-03-27 00:23:38 +08:00
|
|
|
|
2020-03-27 01:00:45 +08:00
|
|
|
let bp = path.join(gp, 'bin');
|
|
|
|
if (!fs.existsSync(bp)) {
|
2020-06-29 23:41:13 +08:00
|
|
|
core.debug(`creating ${bp}`);
|
2022-03-28 17:54:44 +08:00
|
|
|
await io.mkdirP(bp);
|
2020-03-27 00:54:21 +08:00
|
|
|
}
|
2020-03-27 01:00:45 +08:00
|
|
|
|
|
|
|
core.addPath(bp);
|
|
|
|
added = true;
|
2020-03-27 00:02:52 +08:00
|
|
|
}
|
|
|
|
return added;
|
|
|
|
}
|
2020-03-27 12:55:12 +08:00
|
|
|
|
2022-04-09 00:23:10 +08: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 16:04:39 +08: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;
|
|
|
|
}
|