mirror of
https://github.com/actions/setup-python.git
synced 2025-04-24 15:32:13 +00:00
Debug
This commit is contained in:
parent
7bb5a4bb61
commit
69f5a56bfc
1 changed files with 5 additions and 2 deletions
7
dist/setup/index.js
vendored
7
dist/setup/index.js
vendored
|
@ -66569,8 +66569,11 @@ function isArchPresentForWindows(item, architecture) {
|
|||
if (architecture === 'x32') {
|
||||
architecture = 'x86';
|
||||
}
|
||||
core.info(`DEBUG: pypy: ${item.pypy_version}, python: ${item.python_version}, arch: ${item.files.arch}`);
|
||||
const result = item.files.some((file) => file.arch === architecture && utils_1.WINDOWS_PLATFORMS.includes(file.platform));
|
||||
core.info(`DEBUG: pypy: ${item.pypy_version}, python: ${item.python_version}`);
|
||||
const result = item.files.some((file) => {
|
||||
core.info(`arch: ${file.arch}`);
|
||||
file.arch === architecture && utils_1.WINDOWS_PLATFORMS.includes(file.platform);
|
||||
});
|
||||
core.info(`result: ${result}`);
|
||||
return result;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue