2019-08-20 22:27:52 +08:00
|
|
|
import * as core from '@actions/core';
|
|
|
|
import * as finder from './find-python';
|
|
|
|
import * as path from 'path';
|
|
|
|
|
|
|
|
async function run() {
|
|
|
|
try {
|
2019-11-06 04:43:35 +08:00
|
|
|
let version = core.getInput('python-version');
|
2019-08-20 22:27:52 +08:00
|
|
|
if (version) {
|
|
|
|
const arch: string = core.getInput('architecture', {required: true});
|
2020-03-09 15:18:12 +08:00
|
|
|
const installed = await finder.findPythonVersion(version, arch);
|
2020-03-09 17:16:37 +08:00
|
|
|
core.info(`Successfully setup ${installed.impl} (${installed.version})`);
|
2019-08-20 22:27:52 +08:00
|
|
|
}
|
|
|
|
const matchersPath = path.join(__dirname, '..', '.github');
|
2020-03-09 17:16:37 +08:00
|
|
|
core.info(`##[add-matcher]${path.join(matchersPath, 'python.json')}`);
|
2019-08-20 22:27:52 +08:00
|
|
|
} catch (err) {
|
|
|
|
core.setFailed(err.message);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
run();
|