2019-08-20 21:27:52 +07:00
|
|
|
import * as core from '@actions/core';
|
|
|
|
import * as finder from './find-python';
|
2020-12-17 22:03:54 +07:00
|
|
|
import * as finderPyPy from './find-pypy';
|
2019-08-20 21:27:52 +07:00
|
|
|
import * as path from 'path';
|
2020-04-30 00:57:02 +07:00
|
|
|
import * as os from 'os';
|
2022-06-02 21:37:57 +07:00
|
|
|
import fs from 'fs';
|
2021-11-17 17:31:22 +07:00
|
|
|
import {getCacheDistributor} from './cache-distributions/cache-factory';
|
2022-07-25 20:02:06 +07:00
|
|
|
import {
|
|
|
|
isCacheFeatureAvailable,
|
|
|
|
logWarning,
|
|
|
|
IS_LINUX,
|
|
|
|
IS_WINDOWS
|
|
|
|
} from './utils';
|
2019-08-20 21:27:52 +07:00
|
|
|
|
2020-12-17 22:03:54 +07:00
|
|
|
function isPyPyVersion(versionSpec: string) {
|
2022-05-18 20:20:53 +07:00
|
|
|
return versionSpec.startsWith('pypy');
|
2020-12-17 22:03:54 +07:00
|
|
|
}
|
|
|
|
|
2021-11-17 17:31:22 +07:00
|
|
|
async function cacheDependencies(cache: string, pythonVersion: string) {
|
|
|
|
const cacheDependencyPath =
|
|
|
|
core.getInput('cache-dependency-path') || undefined;
|
|
|
|
const cacheDistributor = getCacheDistributor(
|
|
|
|
cache,
|
|
|
|
pythonVersion,
|
|
|
|
cacheDependencyPath
|
|
|
|
);
|
|
|
|
await cacheDistributor.restoreCache();
|
|
|
|
}
|
|
|
|
|
2022-06-02 21:37:57 +07:00
|
|
|
function resolveVersionInput(): string {
|
|
|
|
let version = core.getInput('python-version');
|
2022-06-20 21:04:59 +07:00
|
|
|
let versionFile = core.getInput('python-version-file');
|
2022-06-02 21:37:57 +07:00
|
|
|
|
|
|
|
if (version && versionFile) {
|
|
|
|
core.warning(
|
2022-06-30 21:25:46 +07:00
|
|
|
'Both python-version and python-version-file inputs are specified, only python-version will be used.'
|
2022-06-02 21:37:57 +07:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (version) {
|
|
|
|
return version;
|
|
|
|
}
|
|
|
|
|
2022-06-30 18:38:43 +07:00
|
|
|
if (versionFile) {
|
2022-06-30 21:21:14 +07:00
|
|
|
if (!fs.existsSync(versionFile)) {
|
2022-07-15 21:52:20 +07:00
|
|
|
throw new Error(
|
|
|
|
`The specified python version file at: ${versionFile} doesn't exist.`
|
2022-06-30 22:32:12 +07:00
|
|
|
);
|
2022-06-30 18:38:43 +07:00
|
|
|
}
|
2022-06-30 21:21:14 +07:00
|
|
|
version = fs.readFileSync(versionFile, 'utf8');
|
|
|
|
core.info(`Resolved ${versionFile} as ${version}`);
|
2022-06-30 18:38:43 +07:00
|
|
|
return version;
|
2022-06-02 21:37:57 +07:00
|
|
|
}
|
|
|
|
|
2022-07-15 21:52:20 +07:00
|
|
|
logWarning(
|
|
|
|
"Neither 'python-version' nor 'python-version-file' inputs were supplied. Attempting to find '.python-version' file."
|
2022-06-30 18:38:43 +07:00
|
|
|
);
|
2022-07-15 21:52:20 +07:00
|
|
|
versionFile = '.python-version';
|
|
|
|
if (fs.existsSync(versionFile)) {
|
|
|
|
version = fs.readFileSync(versionFile, 'utf8');
|
|
|
|
core.info(`Resolved ${versionFile} as ${version}`);
|
|
|
|
return version;
|
|
|
|
}
|
|
|
|
|
|
|
|
logWarning(`${versionFile} doesn't exist.`);
|
2022-06-30 21:21:14 +07:00
|
|
|
|
2022-06-02 21:37:57 +07:00
|
|
|
return version;
|
|
|
|
}
|
|
|
|
|
2019-08-20 21:27:52 +07:00
|
|
|
async function run() {
|
2022-05-06 11:26:48 +07:00
|
|
|
// According to the README windows binaries do not require to be installed
|
|
|
|
// in the specific location, but Mac and Linux do
|
2022-05-06 11:09:02 +07:00
|
|
|
if (!IS_WINDOWS && !process.env.AGENT_TOOLSDIRECTORY?.trim()) {
|
|
|
|
if (IS_LINUX) process.env['AGENT_TOOLSDIRECTORY'] = '/opt/hostedtoolcache';
|
|
|
|
else process.env['AGENT_TOOLSDIRECTORY'] = '/Users/runner/hostedtoolcache';
|
2022-02-18 02:21:13 +07:00
|
|
|
process.env['RUNNER_TOOL_CACHE'] = process.env['AGENT_TOOLSDIRECTORY'];
|
2022-02-18 01:35:19 +07:00
|
|
|
}
|
2022-04-27 13:28:44 +07:00
|
|
|
core.debug(
|
2022-05-06 11:26:48 +07:00
|
|
|
`Python is expected to be installed into RUNNER_TOOL_CACHE=${process.env['RUNNER_TOOL_CACHE']}`
|
2022-04-27 13:28:44 +07:00
|
|
|
);
|
2019-08-20 21:27:52 +07:00
|
|
|
try {
|
2022-06-02 21:37:57 +07:00
|
|
|
const version = resolveVersionInput();
|
2022-07-25 21:54:04 +07:00
|
|
|
const checkLatest = core.getBooleanInput('check-latest');
|
|
|
|
|
2019-08-20 21:27:52 +07:00
|
|
|
if (version) {
|
2021-11-17 17:31:22 +07:00
|
|
|
let pythonVersion: string;
|
2020-04-30 00:57:02 +07:00
|
|
|
const arch: string = core.getInput('architecture') || os.arch();
|
2022-06-29 22:00:51 +07:00
|
|
|
const updateEnvironment = core.getBooleanInput('update-environment');
|
2020-12-17 22:03:54 +07:00
|
|
|
if (isPyPyVersion(version)) {
|
2022-06-29 22:00:51 +07:00
|
|
|
const installed = await finderPyPy.findPyPyVersion(
|
|
|
|
version,
|
|
|
|
arch,
|
2022-07-25 21:54:04 +07:00
|
|
|
updateEnvironment,
|
|
|
|
checkLatest
|
2022-06-29 22:00:51 +07:00
|
|
|
);
|
2021-11-17 17:31:22 +07:00
|
|
|
pythonVersion = `${installed.resolvedPyPyVersion}-${installed.resolvedPythonVersion}`;
|
2020-12-17 22:03:54 +07:00
|
|
|
core.info(
|
2022-05-03 19:43:53 +07:00
|
|
|
`Successfully set up PyPy ${installed.resolvedPyPyVersion} with Python (${installed.resolvedPythonVersion})`
|
2020-12-17 22:03:54 +07:00
|
|
|
);
|
|
|
|
} else {
|
2022-06-29 22:00:51 +07:00
|
|
|
const installed = await finder.useCpythonVersion(
|
|
|
|
version,
|
|
|
|
arch,
|
2022-07-25 21:54:04 +07:00
|
|
|
updateEnvironment,
|
|
|
|
checkLatest
|
2022-06-29 22:00:51 +07:00
|
|
|
);
|
2021-11-17 17:31:22 +07:00
|
|
|
pythonVersion = installed.version;
|
2022-05-03 19:43:53 +07:00
|
|
|
core.info(`Successfully set up ${installed.impl} (${pythonVersion})`);
|
2021-11-17 17:31:22 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
const cache = core.getInput('cache');
|
2022-04-01 02:11:27 +07:00
|
|
|
if (cache && isCacheFeatureAvailable()) {
|
2021-11-17 17:31:22 +07:00
|
|
|
await cacheDependencies(cache, pythonVersion);
|
2020-12-17 22:03:54 +07:00
|
|
|
}
|
2022-04-29 11:14:59 +07:00
|
|
|
} else {
|
|
|
|
core.warning(
|
2022-05-04 14:55:36 +07:00
|
|
|
'The `python-version` input is not set. The version of Python currently in `PATH` will be used.'
|
2022-04-29 11:14:59 +07:00
|
|
|
);
|
2019-08-20 21:27:52 +07:00
|
|
|
}
|
2021-11-17 17:31:22 +07:00
|
|
|
const matchersPath = path.join(__dirname, '../..', '.github');
|
2020-03-09 16:16:37 +07:00
|
|
|
core.info(`##[add-matcher]${path.join(matchersPath, 'python.json')}`);
|
2019-08-20 21:27:52 +07:00
|
|
|
} catch (err) {
|
2021-11-17 17:31:22 +07:00
|
|
|
core.setFailed((err as Error).message);
|
2019-08-20 21:27:52 +07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
run();
|