2021-11-17 13:31:22 +03:00
|
|
|
import * as glob from '@actions/glob';
|
|
|
|
import * as core from '@actions/core';
|
|
|
|
import * as exec from '@actions/exec';
|
2022-02-04 14:00:41 +03:00
|
|
|
import * as child_process from 'child_process';
|
|
|
|
import utils from 'util';
|
2021-11-17 13:31:22 +03:00
|
|
|
import * as path from 'path';
|
|
|
|
import os from 'os';
|
|
|
|
|
|
|
|
import CacheDistributor from './cache-distributor';
|
2022-12-07 18:12:42 +01:00
|
|
|
import {getLinuxInfo, IS_LINUX, IS_WINDOWS} from '../utils';
|
2023-02-20 13:36:57 +01:00
|
|
|
import {CACHE_DEPENDENCY_BACKUP_PATH} from './constants';
|
2021-11-17 13:31:22 +03:00
|
|
|
|
|
|
|
class PipCache extends CacheDistributor {
|
2023-02-20 13:36:57 +01:00
|
|
|
private cacheDependencyBackupPath: string = CACHE_DEPENDENCY_BACKUP_PATH;
|
|
|
|
|
2022-01-31 12:42:08 +02:00
|
|
|
constructor(
|
|
|
|
private pythonVersion: string,
|
2023-03-09 12:44:56 +02:00
|
|
|
cacheDependencyPath = '**/requirements.txt'
|
2022-01-31 12:42:08 +02:00
|
|
|
) {
|
2021-11-17 13:31:22 +03:00
|
|
|
super('pip', cacheDependencyPath);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected async getCacheGlobalDirectories() {
|
2022-02-04 14:00:41 +03:00
|
|
|
let exitCode = 1;
|
|
|
|
let stdout = '';
|
|
|
|
let stderr = '';
|
|
|
|
|
|
|
|
// Add temporary fix for Windows
|
|
|
|
// On windows it is necessary to execute through an exec
|
|
|
|
// because the getExecOutput gives a non zero code or writes to stderr for pip 22.0.2,
|
|
|
|
// or spawn must be started with the shell option enabled for getExecOutput
|
|
|
|
// Related issue: https://github.com/actions/setup-python/issues/328
|
|
|
|
if (IS_WINDOWS) {
|
|
|
|
const execPromisify = utils.promisify(child_process.exec);
|
|
|
|
({stdout: stdout, stderr: stderr} = await execPromisify('pip cache dir'));
|
|
|
|
} else {
|
|
|
|
({
|
|
|
|
stdout: stdout,
|
|
|
|
stderr: stderr,
|
|
|
|
exitCode: exitCode
|
|
|
|
} = await exec.getExecOutput('pip cache dir'));
|
|
|
|
}
|
2021-11-17 13:31:22 +03:00
|
|
|
|
|
|
|
if (exitCode && stderr) {
|
|
|
|
throw new Error(
|
|
|
|
`Could not get cache folder path for pip package manager`
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
let resolvedPath = stdout.trim();
|
|
|
|
|
|
|
|
if (resolvedPath.includes('~')) {
|
|
|
|
resolvedPath = path.join(os.homedir(), resolvedPath.slice(1));
|
|
|
|
}
|
|
|
|
|
|
|
|
core.debug(`global cache directory path is ${resolvedPath}`);
|
|
|
|
|
|
|
|
return [resolvedPath];
|
|
|
|
}
|
|
|
|
|
|
|
|
protected async computeKeys() {
|
2023-02-20 13:36:57 +01:00
|
|
|
const hash =
|
|
|
|
(await glob.hashFiles(this.cacheDependencyPath)) ||
|
|
|
|
(await glob.hashFiles(this.cacheDependencyBackupPath));
|
2022-07-19 14:20:19 +02:00
|
|
|
let primaryKey = '';
|
|
|
|
let restoreKey = '';
|
|
|
|
|
|
|
|
if (IS_LINUX) {
|
2022-12-07 18:12:42 +01:00
|
|
|
const osInfo = await getLinuxInfo();
|
2024-08-08 04:12:32 +08:00
|
|
|
primaryKey = `${this.CACHE_KEY_PREFIX}-${process.env['RUNNER_OS']}-${process.arch}-${osInfo.osVersion}-${osInfo.osName}-python-${this.pythonVersion}-${this.packageManager}-${hash}`;
|
|
|
|
restoreKey = `${this.CACHE_KEY_PREFIX}-${process.env['RUNNER_OS']}-${process.arch}-${osInfo.osVersion}-${osInfo.osName}-python-${this.pythonVersion}-${this.packageManager}`;
|
2022-07-19 14:20:19 +02:00
|
|
|
} else {
|
2024-08-08 04:12:32 +08:00
|
|
|
primaryKey = `${this.CACHE_KEY_PREFIX}-${process.env['RUNNER_OS']}-${process.arch}-python-${this.pythonVersion}-${this.packageManager}-${hash}`;
|
|
|
|
restoreKey = `${this.CACHE_KEY_PREFIX}-${process.env['RUNNER_OS']}-${process.arch}-python-${this.pythonVersion}-${this.packageManager}`;
|
2022-07-19 14:20:19 +02:00
|
|
|
}
|
2021-11-17 13:31:22 +03:00
|
|
|
|
|
|
|
return {
|
|
|
|
primaryKey,
|
|
|
|
restoreKey: [restoreKey]
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default PipCache;
|