setup-python/src/setup-python.ts

128 lines
3.9 KiB
TypeScript
Raw Normal View History

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