2019-08-20 16:27:52 +02:00
|
|
|
import * as core from '@actions/core';
|
|
|
|
import * as finder from './find-python';
|
2020-12-17 16:03:54 +01:00
|
|
|
import * as finderPyPy from './find-pypy';
|
2019-08-20 16:27:52 +02:00
|
|
|
import * as path from 'path';
|
2020-04-29 19:57:02 +02:00
|
|
|
import * as os from 'os';
|
2021-11-17 11:31:22 +01:00
|
|
|
import {getCacheDistributor} from './cache-distributions/cache-factory';
|
2022-03-31 21:11:27 +02:00
|
|
|
import {isCacheFeatureAvailable} from './utils';
|
2019-08-20 16:27:52 +02:00
|
|
|
|
2020-12-17 16:03:54 +01:00
|
|
|
function isPyPyVersion(versionSpec: string) {
|
|
|
|
return versionSpec.startsWith('pypy-');
|
|
|
|
}
|
|
|
|
|
2021-11-17 11:31:22 +01: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();
|
|
|
|
}
|
|
|
|
|
2019-08-20 16:27:52 +02:00
|
|
|
async function run() {
|
2022-02-21 06:23:19 +01:00
|
|
|
if (process.env.AGENT_TOOLSDIRECTORY?.trim()) {
|
2022-02-17 20:21:13 +01:00
|
|
|
core.debug(
|
2022-02-21 06:23:19 +01:00
|
|
|
`Python is expected to be installed into AGENT_TOOLSDIRECTORY=${process.env['AGENT_TOOLSDIRECTORY']}`
|
2022-02-17 20:21:13 +01:00
|
|
|
);
|
|
|
|
process.env['RUNNER_TOOL_CACHE'] = process.env['AGENT_TOOLSDIRECTORY'];
|
2022-02-17 19:35:19 +01:00
|
|
|
} else {
|
2022-02-17 20:21:13 +01:00
|
|
|
core.debug(
|
2022-02-21 06:23:19 +01:00
|
|
|
`Python is expected to be installed into RUNNER_TOOL_CACHE==${process.env['RUNNER_TOOL_CACHE']}`
|
2022-02-17 20:21:13 +01:00
|
|
|
);
|
2022-02-17 19:35:19 +01:00
|
|
|
}
|
2019-08-20 16:27:52 +02:00
|
|
|
try {
|
2021-11-17 11:31:22 +01:00
|
|
|
const version = core.getInput('python-version');
|
2019-08-20 16:27:52 +02:00
|
|
|
if (version) {
|
2021-11-17 11:31:22 +01:00
|
|
|
let pythonVersion: string;
|
2020-04-29 19:57:02 +02:00
|
|
|
const arch: string = core.getInput('architecture') || os.arch();
|
2020-12-17 16:03:54 +01:00
|
|
|
if (isPyPyVersion(version)) {
|
|
|
|
const installed = await finderPyPy.findPyPyVersion(version, arch);
|
2021-11-17 11:31:22 +01:00
|
|
|
pythonVersion = `${installed.resolvedPyPyVersion}-${installed.resolvedPythonVersion}`;
|
2020-12-17 16:03:54 +01:00
|
|
|
core.info(
|
|
|
|
`Successfully setup PyPy ${installed.resolvedPyPyVersion} with Python (${installed.resolvedPythonVersion})`
|
|
|
|
);
|
|
|
|
} else {
|
2022-02-28 08:19:48 +01:00
|
|
|
const installed = await finder.useCpythonVersion(version, arch);
|
2021-11-17 11:31:22 +01:00
|
|
|
pythonVersion = installed.version;
|
|
|
|
core.info(`Successfully setup ${installed.impl} (${pythonVersion})`);
|
|
|
|
}
|
|
|
|
|
|
|
|
const cache = core.getInput('cache');
|
2022-03-31 21:11:27 +02:00
|
|
|
if (cache && isCacheFeatureAvailable()) {
|
2021-11-17 11:31:22 +01:00
|
|
|
await cacheDependencies(cache, pythonVersion);
|
2020-12-17 16:03:54 +01:00
|
|
|
}
|
2022-04-29 06:14:59 +02:00
|
|
|
} else {
|
|
|
|
core.warning(
|
2022-05-04 09:55:36 +02:00
|
|
|
'The `python-version` input is not set. The version of Python currently in `PATH` will be used.'
|
2022-04-29 06:14:59 +02:00
|
|
|
);
|
2019-08-20 16:27:52 +02:00
|
|
|
}
|
2021-11-17 11:31:22 +01:00
|
|
|
const matchersPath = path.join(__dirname, '../..', '.github');
|
2020-03-09 10:16:37 +01:00
|
|
|
core.info(`##[add-matcher]${path.join(matchersPath, 'python.json')}`);
|
2019-08-20 16:27:52 +02:00
|
|
|
} catch (err) {
|
2021-11-17 11:31:22 +01:00
|
|
|
core.setFailed((err as Error).message);
|
2019-08-20 16:27:52 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
run();
|