mirror of
https://gitea.com/actions/setup-python.git
synced 2024-11-22 10:09:35 +01:00
Support reading python version from mise config
This commit is contained in:
parent
9a7ac94420
commit
08f73d807e
3 changed files with 69 additions and 16 deletions
|
@ -126,6 +126,30 @@ describe('Version from file test', () => {
|
||||||
expect(_fn(pythonVersionFilePath)).toEqual([pythonVersion]);
|
expect(_fn(pythonVersionFilePath)).toEqual([pythonVersion]);
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
it.each([getVersionInputFromTomlFile, getVersionInputFromFile])(
|
||||||
|
'Version from mise .mise.toml test',
|
||||||
|
async _fn => {
|
||||||
|
await io.mkdirP(tempDir);
|
||||||
|
const pythonVersionFileName = '.mise.toml';
|
||||||
|
const pythonVersionFilePath = path.join(tempDir, pythonVersionFileName);
|
||||||
|
const pythonVersion = '3.7.0';
|
||||||
|
const pythonVersionFileContent = `[tools]\npython = "${pythonVersion}"`;
|
||||||
|
fs.writeFileSync(pythonVersionFilePath, pythonVersionFileContent);
|
||||||
|
expect(_fn(pythonVersionFilePath)).toEqual([pythonVersion]);
|
||||||
|
}
|
||||||
|
);
|
||||||
|
it.each([getVersionInputFromTomlFile, getVersionInputFromFile])(
|
||||||
|
'Version from mise verbose .mise.toml test',
|
||||||
|
async _fn => {
|
||||||
|
await io.mkdirP(tempDir);
|
||||||
|
const pythonVersionFileName = '.mise.toml';
|
||||||
|
const pythonVersionFilePath = path.join(tempDir, pythonVersionFileName);
|
||||||
|
const pythonVersion = '3.7.0';
|
||||||
|
const pythonVersionFileContent = `[tools]\npython = { version="${pythonVersion}", virtualenv=".venv" }`;
|
||||||
|
fs.writeFileSync(pythonVersionFilePath, pythonVersionFileContent);
|
||||||
|
expect(_fn(pythonVersionFilePath)).toEqual([pythonVersion]);
|
||||||
|
}
|
||||||
|
);
|
||||||
it.each([getVersionInputFromTomlFile, getVersionInputFromFile])(
|
it.each([getVersionInputFromTomlFile, getVersionInputFromFile])(
|
||||||
'Version undefined',
|
'Version undefined',
|
||||||
async _fn => {
|
async _fn => {
|
||||||
|
|
27
dist/setup/index.js
vendored
27
dist/setup/index.js
vendored
|
@ -91829,6 +91829,9 @@ function getOSInfo() {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
exports.getOSInfo = getOSInfo;
|
exports.getOSInfo = getOSInfo;
|
||||||
|
function isString(value) {
|
||||||
|
return typeof value === 'string' || value instanceof String;
|
||||||
|
}
|
||||||
/**
|
/**
|
||||||
* Extract a value from an object by following the keys path provided.
|
* Extract a value from an object by following the keys path provided.
|
||||||
* If the value is present, it is returned. Otherwise undefined is returned.
|
* If the value is present, it is returned. Otherwise undefined is returned.
|
||||||
|
@ -91839,9 +91842,12 @@ function extractValue(obj, keys) {
|
||||||
if (keys.length > 1 && value !== undefined) {
|
if (keys.length > 1 && value !== undefined) {
|
||||||
return extractValue(value, keys.slice(1));
|
return extractValue(value, keys.slice(1));
|
||||||
}
|
}
|
||||||
else {
|
else if (isString(value)) {
|
||||||
return value;
|
return value;
|
||||||
}
|
}
|
||||||
|
else {
|
||||||
|
return;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
return;
|
return;
|
||||||
|
@ -91859,19 +91865,26 @@ function getVersionInputFromTomlFile(versionFile) {
|
||||||
core.debug(`Trying to resolve version form ${versionFile}`);
|
core.debug(`Trying to resolve version form ${versionFile}`);
|
||||||
const pyprojectFile = fs_1.default.readFileSync(versionFile, 'utf8');
|
const pyprojectFile = fs_1.default.readFileSync(versionFile, 'utf8');
|
||||||
const pyprojectConfig = toml.parse(pyprojectFile);
|
const pyprojectConfig = toml.parse(pyprojectFile);
|
||||||
let keys = [];
|
let keyPaths = [];
|
||||||
if ('project' in pyprojectConfig) {
|
if ('project' in pyprojectConfig) {
|
||||||
// standard project metadata (PEP 621)
|
// standard project metadata (PEP 621)
|
||||||
keys = ['project', 'requires-python'];
|
keyPaths = [['project', 'requires-python']];
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
keyPaths = [
|
||||||
// python poetry
|
// python poetry
|
||||||
keys = ['tool', 'poetry', 'dependencies', 'python'];
|
['tool', 'poetry', 'dependencies', 'python'],
|
||||||
|
// mise
|
||||||
|
['tools', 'python'],
|
||||||
|
['tools', 'python', 'version']
|
||||||
|
];
|
||||||
}
|
}
|
||||||
const versions = [];
|
const versions = [];
|
||||||
const version = extractValue(pyprojectConfig, keys);
|
for (const keys of keyPaths) {
|
||||||
if (version !== undefined) {
|
const value = extractValue(pyprojectConfig, keys);
|
||||||
versions.push(version);
|
if (value !== undefined) {
|
||||||
|
versions.push(value);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
core.info(`Extracted ${versions} from ${versionFile}`);
|
core.info(`Extracted ${versions} from ${versionFile}`);
|
||||||
const rawVersions = Array.from(versions, version => version.split(',').join(' '));
|
const rawVersions = Array.from(versions, version => version.split(',').join(' '));
|
||||||
|
|
30
src/utils.ts
30
src/utils.ts
|
@ -196,6 +196,10 @@ export async function getOSInfo() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function isString(value: unknown): value is string {
|
||||||
|
return typeof value === 'string' || value instanceof String;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Extract a value from an object by following the keys path provided.
|
* Extract a value from an object by following the keys path provided.
|
||||||
* If the value is present, it is returned. Otherwise undefined is returned.
|
* If the value is present, it is returned. Otherwise undefined is returned.
|
||||||
|
@ -205,8 +209,10 @@ function extractValue(obj: any, keys: string[]): string | undefined {
|
||||||
const value = obj[keys[0]];
|
const value = obj[keys[0]];
|
||||||
if (keys.length > 1 && value !== undefined) {
|
if (keys.length > 1 && value !== undefined) {
|
||||||
return extractValue(value, keys.slice(1));
|
return extractValue(value, keys.slice(1));
|
||||||
} else {
|
} else if (isString(value)) {
|
||||||
return value;
|
return value;
|
||||||
|
} else {
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
return;
|
return;
|
||||||
|
@ -226,19 +232,29 @@ export function getVersionInputFromTomlFile(versionFile: string): string[] {
|
||||||
|
|
||||||
const pyprojectFile = fs.readFileSync(versionFile, 'utf8');
|
const pyprojectFile = fs.readFileSync(versionFile, 'utf8');
|
||||||
const pyprojectConfig = toml.parse(pyprojectFile);
|
const pyprojectConfig = toml.parse(pyprojectFile);
|
||||||
let keys = [];
|
|
||||||
|
let keyPaths = [];
|
||||||
|
|
||||||
if ('project' in pyprojectConfig) {
|
if ('project' in pyprojectConfig) {
|
||||||
// standard project metadata (PEP 621)
|
// standard project metadata (PEP 621)
|
||||||
keys = ['project', 'requires-python'];
|
keyPaths = [['project', 'requires-python']];
|
||||||
} else {
|
} else {
|
||||||
|
keyPaths = [
|
||||||
// python poetry
|
// python poetry
|
||||||
keys = ['tool', 'poetry', 'dependencies', 'python'];
|
['tool', 'poetry', 'dependencies', 'python'],
|
||||||
|
// mise
|
||||||
|
['tools', 'python'],
|
||||||
|
['tools', 'python', 'version']
|
||||||
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
const versions = [];
|
const versions = [];
|
||||||
const version = extractValue(pyprojectConfig, keys);
|
|
||||||
if (version !== undefined) {
|
for (const keys of keyPaths) {
|
||||||
versions.push(version);
|
const value = extractValue(pyprojectConfig, keys);
|
||||||
|
if (value !== undefined) {
|
||||||
|
versions.push(value);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
core.info(`Extracted ${versions} from ${versionFile}`);
|
core.info(`Extracted ${versions} from ${versionFile}`);
|
||||||
|
|
Loading…
Reference in a new issue