mirror of
				https://github.com/gradle/gradle-build-action.git
				synced 2025-11-04 18:08:57 +08:00 
			
		
		
		
	Merge branch 'dd/cache-read-timeout'
* dd/cache-read-timeout: Build outputs Extract constant for Env Var name Remove custom option for cache-read-timeout Use actions/cache v3.0.4
This commit is contained in:
		@@ -66,10 +66,6 @@ inputs:
 | 
				
			|||||||
    description: When 'true', the action will not attempt to restore the Gradle User Home entries from other Jobs.
 | 
					    description: When 'true', the action will not attempt to restore the Gradle User Home entries from other Jobs.
 | 
				
			||||||
    required: false
 | 
					    required: false
 | 
				
			||||||
    default: false
 | 
					    default: false
 | 
				
			||||||
  cache-read-timeout:
 | 
					 | 
				
			||||||
    description: A timeout value in seconds for cache reads. Requests taking longer that this will be aborted.
 | 
					 | 
				
			||||||
    required: true
 | 
					 | 
				
			||||||
    default: 600
 | 
					 | 
				
			||||||
  workflow-job-context:
 | 
					  workflow-job-context:
 | 
				
			||||||
    description: Used to uniquely identify the current job invocation. Defaults to the matrix values for this job; this should not be overridden by users (INTERNAL).
 | 
					    description: Used to uniquely identify the current job invocation. Defaults to the matrix values for this job; this should not be overridden by users (INTERNAL).
 | 
				
			||||||
    required: false
 | 
					    required: false
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										100
									
								
								dist/main/index.js
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										100
									
								
								dist/main/index.js
									
									
									
									
										vendored
									
									
								
							@@ -1059,6 +1059,7 @@ const fs_1 = __nccwpck_require__(7147);
 | 
				
			|||||||
const path = __importStar(__nccwpck_require__(1017));
 | 
					const path = __importStar(__nccwpck_require__(1017));
 | 
				
			||||||
const utils = __importStar(__nccwpck_require__(1518));
 | 
					const utils = __importStar(__nccwpck_require__(1518));
 | 
				
			||||||
const constants_1 = __nccwpck_require__(8840);
 | 
					const constants_1 = __nccwpck_require__(8840);
 | 
				
			||||||
 | 
					const IS_WINDOWS = process.platform === 'win32';
 | 
				
			||||||
function getTarPath(args, compressionMethod) {
 | 
					function getTarPath(args, compressionMethod) {
 | 
				
			||||||
    return __awaiter(this, void 0, void 0, function* () {
 | 
					    return __awaiter(this, void 0, void 0, function* () {
 | 
				
			||||||
        switch (process.platform) {
 | 
					        switch (process.platform) {
 | 
				
			||||||
@@ -1106,26 +1107,43 @@ function getWorkingDirectory() {
 | 
				
			|||||||
    var _a;
 | 
					    var _a;
 | 
				
			||||||
    return (_a = process.env['GITHUB_WORKSPACE']) !== null && _a !== void 0 ? _a : process.cwd();
 | 
					    return (_a = process.env['GITHUB_WORKSPACE']) !== null && _a !== void 0 ? _a : process.cwd();
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					// Common function for extractTar and listTar to get the compression method
 | 
				
			||||||
 | 
					function getCompressionProgram(compressionMethod) {
 | 
				
			||||||
 | 
					    // -d: Decompress.
 | 
				
			||||||
 | 
					    // unzstd is equivalent to 'zstd -d'
 | 
				
			||||||
 | 
					    // --long=#: Enables long distance matching with # bits. Maximum is 30 (1GB) on 32-bit OS and 31 (2GB) on 64-bit.
 | 
				
			||||||
 | 
					    // Using 30 here because we also support 32-bit self-hosted runners.
 | 
				
			||||||
 | 
					    switch (compressionMethod) {
 | 
				
			||||||
 | 
					        case constants_1.CompressionMethod.Zstd:
 | 
				
			||||||
 | 
					            return [
 | 
				
			||||||
 | 
					                '--use-compress-program',
 | 
				
			||||||
 | 
					                IS_WINDOWS ? 'zstd -d --long=30' : 'unzstd --long=30'
 | 
				
			||||||
 | 
					            ];
 | 
				
			||||||
 | 
					        case constants_1.CompressionMethod.ZstdWithoutLong:
 | 
				
			||||||
 | 
					            return ['--use-compress-program', IS_WINDOWS ? 'zstd -d' : 'unzstd'];
 | 
				
			||||||
 | 
					        default:
 | 
				
			||||||
 | 
					            return ['-z'];
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					function listTar(archivePath, compressionMethod) {
 | 
				
			||||||
 | 
					    return __awaiter(this, void 0, void 0, function* () {
 | 
				
			||||||
 | 
					        const args = [
 | 
				
			||||||
 | 
					            ...getCompressionProgram(compressionMethod),
 | 
				
			||||||
 | 
					            '-tf',
 | 
				
			||||||
 | 
					            archivePath.replace(new RegExp(`\\${path.sep}`, 'g'), '/'),
 | 
				
			||||||
 | 
					            '-P'
 | 
				
			||||||
 | 
					        ];
 | 
				
			||||||
 | 
					        yield execTar(args, compressionMethod);
 | 
				
			||||||
 | 
					    });
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					exports.listTar = listTar;
 | 
				
			||||||
function extractTar(archivePath, compressionMethod) {
 | 
					function extractTar(archivePath, compressionMethod) {
 | 
				
			||||||
    return __awaiter(this, void 0, void 0, function* () {
 | 
					    return __awaiter(this, void 0, void 0, function* () {
 | 
				
			||||||
        // Create directory to extract tar into
 | 
					        // Create directory to extract tar into
 | 
				
			||||||
        const workingDirectory = getWorkingDirectory();
 | 
					        const workingDirectory = getWorkingDirectory();
 | 
				
			||||||
        yield io.mkdirP(workingDirectory);
 | 
					        yield io.mkdirP(workingDirectory);
 | 
				
			||||||
        // --d: Decompress.
 | 
					 | 
				
			||||||
        // --long=#: Enables long distance matching with # bits. Maximum is 30 (1GB) on 32-bit OS and 31 (2GB) on 64-bit.
 | 
					 | 
				
			||||||
        // Using 30 here because we also support 32-bit self-hosted runners.
 | 
					 | 
				
			||||||
        function getCompressionProgram() {
 | 
					 | 
				
			||||||
            switch (compressionMethod) {
 | 
					 | 
				
			||||||
                case constants_1.CompressionMethod.Zstd:
 | 
					 | 
				
			||||||
                    return ['--use-compress-program', 'unzstd --long=30'];
 | 
					 | 
				
			||||||
                case constants_1.CompressionMethod.ZstdWithoutLong:
 | 
					 | 
				
			||||||
                    return ['--use-compress-program', 'unzstd'];
 | 
					 | 
				
			||||||
                default:
 | 
					 | 
				
			||||||
                    return ['-z'];
 | 
					 | 
				
			||||||
            }
 | 
					 | 
				
			||||||
        }
 | 
					 | 
				
			||||||
        const args = [
 | 
					        const args = [
 | 
				
			||||||
            ...getCompressionProgram(),
 | 
					            ...getCompressionProgram(compressionMethod),
 | 
				
			||||||
            '-xf',
 | 
					            '-xf',
 | 
				
			||||||
            archivePath.replace(new RegExp(`\\${path.sep}`, 'g'), '/'),
 | 
					            archivePath.replace(new RegExp(`\\${path.sep}`, 'g'), '/'),
 | 
				
			||||||
            '-P',
 | 
					            '-P',
 | 
				
			||||||
@@ -1144,15 +1162,19 @@ function createTar(archiveFolder, sourceDirectories, compressionMethod) {
 | 
				
			|||||||
        fs_1.writeFileSync(path.join(archiveFolder, manifestFilename), sourceDirectories.join('\n'));
 | 
					        fs_1.writeFileSync(path.join(archiveFolder, manifestFilename), sourceDirectories.join('\n'));
 | 
				
			||||||
        const workingDirectory = getWorkingDirectory();
 | 
					        const workingDirectory = getWorkingDirectory();
 | 
				
			||||||
        // -T#: Compress using # working thread. If # is 0, attempt to detect and use the number of physical CPU cores.
 | 
					        // -T#: Compress using # working thread. If # is 0, attempt to detect and use the number of physical CPU cores.
 | 
				
			||||||
 | 
					        // zstdmt is equivalent to 'zstd -T0'
 | 
				
			||||||
        // --long=#: Enables long distance matching with # bits. Maximum is 30 (1GB) on 32-bit OS and 31 (2GB) on 64-bit.
 | 
					        // --long=#: Enables long distance matching with # bits. Maximum is 30 (1GB) on 32-bit OS and 31 (2GB) on 64-bit.
 | 
				
			||||||
        // Using 30 here because we also support 32-bit self-hosted runners.
 | 
					        // Using 30 here because we also support 32-bit self-hosted runners.
 | 
				
			||||||
        // Long range mode is added to zstd in v1.3.2 release, so we will not use --long in older version of zstd.
 | 
					        // Long range mode is added to zstd in v1.3.2 release, so we will not use --long in older version of zstd.
 | 
				
			||||||
        function getCompressionProgram() {
 | 
					        function getCompressionProgram() {
 | 
				
			||||||
            switch (compressionMethod) {
 | 
					            switch (compressionMethod) {
 | 
				
			||||||
                case constants_1.CompressionMethod.Zstd:
 | 
					                case constants_1.CompressionMethod.Zstd:
 | 
				
			||||||
                    return ['--use-compress-program', 'zstdmt --long=30'];
 | 
					                    return [
 | 
				
			||||||
 | 
					                        '--use-compress-program',
 | 
				
			||||||
 | 
					                        IS_WINDOWS ? 'zstd -T0 --long=30' : 'zstdmt --long=30'
 | 
				
			||||||
 | 
					                    ];
 | 
				
			||||||
                case constants_1.CompressionMethod.ZstdWithoutLong:
 | 
					                case constants_1.CompressionMethod.ZstdWithoutLong:
 | 
				
			||||||
                    return ['--use-compress-program', 'zstdmt'];
 | 
					                    return ['--use-compress-program', IS_WINDOWS ? 'zstd -T0' : 'zstdmt'];
 | 
				
			||||||
                default:
 | 
					                default:
 | 
				
			||||||
                    return ['-z'];
 | 
					                    return ['-z'];
 | 
				
			||||||
            }
 | 
					            }
 | 
				
			||||||
@@ -1174,32 +1196,6 @@ function createTar(archiveFolder, sourceDirectories, compressionMethod) {
 | 
				
			|||||||
    });
 | 
					    });
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
exports.createTar = createTar;
 | 
					exports.createTar = createTar;
 | 
				
			||||||
function listTar(archivePath, compressionMethod) {
 | 
					 | 
				
			||||||
    return __awaiter(this, void 0, void 0, function* () {
 | 
					 | 
				
			||||||
        // --d: Decompress.
 | 
					 | 
				
			||||||
        // --long=#: Enables long distance matching with # bits.
 | 
					 | 
				
			||||||
        // Maximum is 30 (1GB) on 32-bit OS and 31 (2GB) on 64-bit.
 | 
					 | 
				
			||||||
        // Using 30 here because we also support 32-bit self-hosted runners.
 | 
					 | 
				
			||||||
        function getCompressionProgram() {
 | 
					 | 
				
			||||||
            switch (compressionMethod) {
 | 
					 | 
				
			||||||
                case constants_1.CompressionMethod.Zstd:
 | 
					 | 
				
			||||||
                    return ['--use-compress-program', 'unzstd --long=30'];
 | 
					 | 
				
			||||||
                case constants_1.CompressionMethod.ZstdWithoutLong:
 | 
					 | 
				
			||||||
                    return ['--use-compress-program', 'unzstd'];
 | 
					 | 
				
			||||||
                default:
 | 
					 | 
				
			||||||
                    return ['-z'];
 | 
					 | 
				
			||||||
            }
 | 
					 | 
				
			||||||
        }
 | 
					 | 
				
			||||||
        const args = [
 | 
					 | 
				
			||||||
            ...getCompressionProgram(),
 | 
					 | 
				
			||||||
            '-tf',
 | 
					 | 
				
			||||||
            archivePath.replace(new RegExp(`\\${path.sep}`, 'g'), '/'),
 | 
					 | 
				
			||||||
            '-P'
 | 
					 | 
				
			||||||
        ];
 | 
					 | 
				
			||||||
        yield execTar(args, compressionMethod);
 | 
					 | 
				
			||||||
    });
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
exports.listTar = listTar;
 | 
					 | 
				
			||||||
//# sourceMappingURL=tar.js.map
 | 
					//# sourceMappingURL=tar.js.map
 | 
				
			||||||
 | 
					
 | 
				
			||||||
/***/ }),
 | 
					/***/ }),
 | 
				
			||||||
@@ -1267,9 +1263,16 @@ function getDownloadOptions(copy) {
 | 
				
			|||||||
            result.segmentTimeoutInMs = copy.segmentTimeoutInMs;
 | 
					            result.segmentTimeoutInMs = copy.segmentTimeoutInMs;
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					    const segmentDownloadTimeoutMins = process.env['SEGMENT_DOWNLOAD_TIMEOUT_MINS'];
 | 
				
			||||||
 | 
					    if (segmentDownloadTimeoutMins &&
 | 
				
			||||||
 | 
					        !isNaN(Number(segmentDownloadTimeoutMins)) &&
 | 
				
			||||||
 | 
					        isFinite(Number(segmentDownloadTimeoutMins))) {
 | 
				
			||||||
 | 
					        result.segmentTimeoutInMs = Number(segmentDownloadTimeoutMins) * 60 * 1000;
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
    core.debug(`Use Azure SDK: ${result.useAzureSdk}`);
 | 
					    core.debug(`Use Azure SDK: ${result.useAzureSdk}`);
 | 
				
			||||||
    core.debug(`Download concurrency: ${result.downloadConcurrency}`);
 | 
					    core.debug(`Download concurrency: ${result.downloadConcurrency}`);
 | 
				
			||||||
    core.debug(`Request timeout (ms): ${result.timeoutInMs}`);
 | 
					    core.debug(`Request timeout (ms): ${result.timeoutInMs}`);
 | 
				
			||||||
 | 
					    core.debug(`Cache segment download timeout mins env var: ${process.env['SEGMENT_DOWNLOAD_TIMEOUT_MINS']}`);
 | 
				
			||||||
    core.debug(`Segment download timeout (ms): ${result.segmentTimeoutInMs}`);
 | 
					    core.debug(`Segment download timeout (ms): ${result.segmentTimeoutInMs}`);
 | 
				
			||||||
    return result;
 | 
					    return result;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
@@ -66374,7 +66377,6 @@ const JOB_CONTEXT_PARAMETER = 'workflow-job-context';
 | 
				
			|||||||
const CACHE_DISABLED_PARAMETER = 'cache-disabled';
 | 
					const CACHE_DISABLED_PARAMETER = 'cache-disabled';
 | 
				
			||||||
const CACHE_READONLY_PARAMETER = 'cache-read-only';
 | 
					const CACHE_READONLY_PARAMETER = 'cache-read-only';
 | 
				
			||||||
const CACHE_WRITEONLY_PARAMETER = 'cache-write-only';
 | 
					const CACHE_WRITEONLY_PARAMETER = 'cache-write-only';
 | 
				
			||||||
const CACHE_TIMEOUT_PARAMETER = 'cache-read-timeout';
 | 
					 | 
				
			||||||
const STRICT_CACHE_MATCH_PARAMETER = 'gradle-home-cache-strict-match';
 | 
					const STRICT_CACHE_MATCH_PARAMETER = 'gradle-home-cache-strict-match';
 | 
				
			||||||
const CACHE_DEBUG_VAR = 'GRADLE_BUILD_ACTION_CACHE_DEBUG_ENABLED';
 | 
					const CACHE_DEBUG_VAR = 'GRADLE_BUILD_ACTION_CACHE_DEBUG_ENABLED';
 | 
				
			||||||
const CACHE_KEY_PREFIX_VAR = 'GRADLE_BUILD_ACTION_CACHE_KEY_PREFIX';
 | 
					const CACHE_KEY_PREFIX_VAR = 'GRADLE_BUILD_ACTION_CACHE_KEY_PREFIX';
 | 
				
			||||||
@@ -66382,6 +66384,8 @@ const CACHE_KEY_OS_VAR = 'GRADLE_BUILD_ACTION_CACHE_KEY_ENVIRONMENT';
 | 
				
			|||||||
const CACHE_KEY_JOB_VAR = 'GRADLE_BUILD_ACTION_CACHE_KEY_JOB';
 | 
					const CACHE_KEY_JOB_VAR = 'GRADLE_BUILD_ACTION_CACHE_KEY_JOB';
 | 
				
			||||||
const CACHE_KEY_JOB_INSTANCE_VAR = 'GRADLE_BUILD_ACTION_CACHE_KEY_JOB_INSTANCE';
 | 
					const CACHE_KEY_JOB_INSTANCE_VAR = 'GRADLE_BUILD_ACTION_CACHE_KEY_JOB_INSTANCE';
 | 
				
			||||||
const CACHE_KEY_JOB_EXECUTION_VAR = 'GRADLE_BUILD_ACTION_CACHE_KEY_JOB_EXECUTION';
 | 
					const CACHE_KEY_JOB_EXECUTION_VAR = 'GRADLE_BUILD_ACTION_CACHE_KEY_JOB_EXECUTION';
 | 
				
			||||||
 | 
					const SEGMENT_DOWNLOAD_TIMEOUT_VAR = 'SEGMENT_DOWNLOAD_TIMEOUT_MINS';
 | 
				
			||||||
 | 
					const SEGMENT_DOWNLOAD_TIMEOUT_DEFAULT = 10 * 60 * 1000;
 | 
				
			||||||
function isCacheDisabled() {
 | 
					function isCacheDisabled() {
 | 
				
			||||||
    if (!cache.isFeatureAvailable()) {
 | 
					    if (!cache.isFeatureAvailable()) {
 | 
				
			||||||
        return true;
 | 
					        return true;
 | 
				
			||||||
@@ -66401,9 +66405,6 @@ function isCacheDebuggingEnabled() {
 | 
				
			|||||||
    return process.env[CACHE_DEBUG_VAR] ? true : false;
 | 
					    return process.env[CACHE_DEBUG_VAR] ? true : false;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
exports.isCacheDebuggingEnabled = isCacheDebuggingEnabled;
 | 
					exports.isCacheDebuggingEnabled = isCacheDebuggingEnabled;
 | 
				
			||||||
function getCacheReadTimeoutMs() {
 | 
					 | 
				
			||||||
    return parseInt(core.getInput(CACHE_TIMEOUT_PARAMETER)) * 1000;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
class CacheKey {
 | 
					class CacheKey {
 | 
				
			||||||
    constructor(key, restoreKeys) {
 | 
					    constructor(key, restoreKeys) {
 | 
				
			||||||
        this.key = key;
 | 
					        this.key = key;
 | 
				
			||||||
@@ -66461,9 +66462,10 @@ function restoreCache(cachePath, cacheKey, cacheRestoreKeys, listener) {
 | 
				
			|||||||
    return __awaiter(this, void 0, void 0, function* () {
 | 
					    return __awaiter(this, void 0, void 0, function* () {
 | 
				
			||||||
        listener.markRequested(cacheKey, cacheRestoreKeys);
 | 
					        listener.markRequested(cacheKey, cacheRestoreKeys);
 | 
				
			||||||
        try {
 | 
					        try {
 | 
				
			||||||
            const restoredEntry = yield cache.restoreCache(cachePath, cacheKey, cacheRestoreKeys, {
 | 
					            const cacheRestoreOptions = process.env[SEGMENT_DOWNLOAD_TIMEOUT_VAR]
 | 
				
			||||||
                segmentTimeoutInMs: getCacheReadTimeoutMs()
 | 
					                ? {}
 | 
				
			||||||
            });
 | 
					                : { segmentTimeoutInMs: SEGMENT_DOWNLOAD_TIMEOUT_DEFAULT };
 | 
				
			||||||
 | 
					            const restoredEntry = yield cache.restoreCache(cachePath, cacheKey, cacheRestoreKeys, cacheRestoreOptions);
 | 
				
			||||||
            if (restoredEntry !== undefined) {
 | 
					            if (restoredEntry !== undefined) {
 | 
				
			||||||
                listener.markRestored(restoredEntry.key, restoredEntry.size);
 | 
					                listener.markRestored(restoredEntry.key, restoredEntry.size);
 | 
				
			||||||
            }
 | 
					            }
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										2
									
								
								dist/main/index.js.map
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										2
									
								
								dist/main/index.js.map
									
									
									
									
										vendored
									
									
								
							
										
											
												File diff suppressed because one or more lines are too long
											
										
									
								
							
							
								
								
									
										100
									
								
								dist/post/index.js
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										100
									
								
								dist/post/index.js
									
									
									
									
										vendored
									
									
								
							@@ -1059,6 +1059,7 @@ const fs_1 = __nccwpck_require__(7147);
 | 
				
			|||||||
const path = __importStar(__nccwpck_require__(1017));
 | 
					const path = __importStar(__nccwpck_require__(1017));
 | 
				
			||||||
const utils = __importStar(__nccwpck_require__(1518));
 | 
					const utils = __importStar(__nccwpck_require__(1518));
 | 
				
			||||||
const constants_1 = __nccwpck_require__(8840);
 | 
					const constants_1 = __nccwpck_require__(8840);
 | 
				
			||||||
 | 
					const IS_WINDOWS = process.platform === 'win32';
 | 
				
			||||||
function getTarPath(args, compressionMethod) {
 | 
					function getTarPath(args, compressionMethod) {
 | 
				
			||||||
    return __awaiter(this, void 0, void 0, function* () {
 | 
					    return __awaiter(this, void 0, void 0, function* () {
 | 
				
			||||||
        switch (process.platform) {
 | 
					        switch (process.platform) {
 | 
				
			||||||
@@ -1106,26 +1107,43 @@ function getWorkingDirectory() {
 | 
				
			|||||||
    var _a;
 | 
					    var _a;
 | 
				
			||||||
    return (_a = process.env['GITHUB_WORKSPACE']) !== null && _a !== void 0 ? _a : process.cwd();
 | 
					    return (_a = process.env['GITHUB_WORKSPACE']) !== null && _a !== void 0 ? _a : process.cwd();
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					// Common function for extractTar and listTar to get the compression method
 | 
				
			||||||
 | 
					function getCompressionProgram(compressionMethod) {
 | 
				
			||||||
 | 
					    // -d: Decompress.
 | 
				
			||||||
 | 
					    // unzstd is equivalent to 'zstd -d'
 | 
				
			||||||
 | 
					    // --long=#: Enables long distance matching with # bits. Maximum is 30 (1GB) on 32-bit OS and 31 (2GB) on 64-bit.
 | 
				
			||||||
 | 
					    // Using 30 here because we also support 32-bit self-hosted runners.
 | 
				
			||||||
 | 
					    switch (compressionMethod) {
 | 
				
			||||||
 | 
					        case constants_1.CompressionMethod.Zstd:
 | 
				
			||||||
 | 
					            return [
 | 
				
			||||||
 | 
					                '--use-compress-program',
 | 
				
			||||||
 | 
					                IS_WINDOWS ? 'zstd -d --long=30' : 'unzstd --long=30'
 | 
				
			||||||
 | 
					            ];
 | 
				
			||||||
 | 
					        case constants_1.CompressionMethod.ZstdWithoutLong:
 | 
				
			||||||
 | 
					            return ['--use-compress-program', IS_WINDOWS ? 'zstd -d' : 'unzstd'];
 | 
				
			||||||
 | 
					        default:
 | 
				
			||||||
 | 
					            return ['-z'];
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					function listTar(archivePath, compressionMethod) {
 | 
				
			||||||
 | 
					    return __awaiter(this, void 0, void 0, function* () {
 | 
				
			||||||
 | 
					        const args = [
 | 
				
			||||||
 | 
					            ...getCompressionProgram(compressionMethod),
 | 
				
			||||||
 | 
					            '-tf',
 | 
				
			||||||
 | 
					            archivePath.replace(new RegExp(`\\${path.sep}`, 'g'), '/'),
 | 
				
			||||||
 | 
					            '-P'
 | 
				
			||||||
 | 
					        ];
 | 
				
			||||||
 | 
					        yield execTar(args, compressionMethod);
 | 
				
			||||||
 | 
					    });
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					exports.listTar = listTar;
 | 
				
			||||||
function extractTar(archivePath, compressionMethod) {
 | 
					function extractTar(archivePath, compressionMethod) {
 | 
				
			||||||
    return __awaiter(this, void 0, void 0, function* () {
 | 
					    return __awaiter(this, void 0, void 0, function* () {
 | 
				
			||||||
        // Create directory to extract tar into
 | 
					        // Create directory to extract tar into
 | 
				
			||||||
        const workingDirectory = getWorkingDirectory();
 | 
					        const workingDirectory = getWorkingDirectory();
 | 
				
			||||||
        yield io.mkdirP(workingDirectory);
 | 
					        yield io.mkdirP(workingDirectory);
 | 
				
			||||||
        // --d: Decompress.
 | 
					 | 
				
			||||||
        // --long=#: Enables long distance matching with # bits. Maximum is 30 (1GB) on 32-bit OS and 31 (2GB) on 64-bit.
 | 
					 | 
				
			||||||
        // Using 30 here because we also support 32-bit self-hosted runners.
 | 
					 | 
				
			||||||
        function getCompressionProgram() {
 | 
					 | 
				
			||||||
            switch (compressionMethod) {
 | 
					 | 
				
			||||||
                case constants_1.CompressionMethod.Zstd:
 | 
					 | 
				
			||||||
                    return ['--use-compress-program', 'unzstd --long=30'];
 | 
					 | 
				
			||||||
                case constants_1.CompressionMethod.ZstdWithoutLong:
 | 
					 | 
				
			||||||
                    return ['--use-compress-program', 'unzstd'];
 | 
					 | 
				
			||||||
                default:
 | 
					 | 
				
			||||||
                    return ['-z'];
 | 
					 | 
				
			||||||
            }
 | 
					 | 
				
			||||||
        }
 | 
					 | 
				
			||||||
        const args = [
 | 
					        const args = [
 | 
				
			||||||
            ...getCompressionProgram(),
 | 
					            ...getCompressionProgram(compressionMethod),
 | 
				
			||||||
            '-xf',
 | 
					            '-xf',
 | 
				
			||||||
            archivePath.replace(new RegExp(`\\${path.sep}`, 'g'), '/'),
 | 
					            archivePath.replace(new RegExp(`\\${path.sep}`, 'g'), '/'),
 | 
				
			||||||
            '-P',
 | 
					            '-P',
 | 
				
			||||||
@@ -1144,15 +1162,19 @@ function createTar(archiveFolder, sourceDirectories, compressionMethod) {
 | 
				
			|||||||
        fs_1.writeFileSync(path.join(archiveFolder, manifestFilename), sourceDirectories.join('\n'));
 | 
					        fs_1.writeFileSync(path.join(archiveFolder, manifestFilename), sourceDirectories.join('\n'));
 | 
				
			||||||
        const workingDirectory = getWorkingDirectory();
 | 
					        const workingDirectory = getWorkingDirectory();
 | 
				
			||||||
        // -T#: Compress using # working thread. If # is 0, attempt to detect and use the number of physical CPU cores.
 | 
					        // -T#: Compress using # working thread. If # is 0, attempt to detect and use the number of physical CPU cores.
 | 
				
			||||||
 | 
					        // zstdmt is equivalent to 'zstd -T0'
 | 
				
			||||||
        // --long=#: Enables long distance matching with # bits. Maximum is 30 (1GB) on 32-bit OS and 31 (2GB) on 64-bit.
 | 
					        // --long=#: Enables long distance matching with # bits. Maximum is 30 (1GB) on 32-bit OS and 31 (2GB) on 64-bit.
 | 
				
			||||||
        // Using 30 here because we also support 32-bit self-hosted runners.
 | 
					        // Using 30 here because we also support 32-bit self-hosted runners.
 | 
				
			||||||
        // Long range mode is added to zstd in v1.3.2 release, so we will not use --long in older version of zstd.
 | 
					        // Long range mode is added to zstd in v1.3.2 release, so we will not use --long in older version of zstd.
 | 
				
			||||||
        function getCompressionProgram() {
 | 
					        function getCompressionProgram() {
 | 
				
			||||||
            switch (compressionMethod) {
 | 
					            switch (compressionMethod) {
 | 
				
			||||||
                case constants_1.CompressionMethod.Zstd:
 | 
					                case constants_1.CompressionMethod.Zstd:
 | 
				
			||||||
                    return ['--use-compress-program', 'zstdmt --long=30'];
 | 
					                    return [
 | 
				
			||||||
 | 
					                        '--use-compress-program',
 | 
				
			||||||
 | 
					                        IS_WINDOWS ? 'zstd -T0 --long=30' : 'zstdmt --long=30'
 | 
				
			||||||
 | 
					                    ];
 | 
				
			||||||
                case constants_1.CompressionMethod.ZstdWithoutLong:
 | 
					                case constants_1.CompressionMethod.ZstdWithoutLong:
 | 
				
			||||||
                    return ['--use-compress-program', 'zstdmt'];
 | 
					                    return ['--use-compress-program', IS_WINDOWS ? 'zstd -T0' : 'zstdmt'];
 | 
				
			||||||
                default:
 | 
					                default:
 | 
				
			||||||
                    return ['-z'];
 | 
					                    return ['-z'];
 | 
				
			||||||
            }
 | 
					            }
 | 
				
			||||||
@@ -1174,32 +1196,6 @@ function createTar(archiveFolder, sourceDirectories, compressionMethod) {
 | 
				
			|||||||
    });
 | 
					    });
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
exports.createTar = createTar;
 | 
					exports.createTar = createTar;
 | 
				
			||||||
function listTar(archivePath, compressionMethod) {
 | 
					 | 
				
			||||||
    return __awaiter(this, void 0, void 0, function* () {
 | 
					 | 
				
			||||||
        // --d: Decompress.
 | 
					 | 
				
			||||||
        // --long=#: Enables long distance matching with # bits.
 | 
					 | 
				
			||||||
        // Maximum is 30 (1GB) on 32-bit OS and 31 (2GB) on 64-bit.
 | 
					 | 
				
			||||||
        // Using 30 here because we also support 32-bit self-hosted runners.
 | 
					 | 
				
			||||||
        function getCompressionProgram() {
 | 
					 | 
				
			||||||
            switch (compressionMethod) {
 | 
					 | 
				
			||||||
                case constants_1.CompressionMethod.Zstd:
 | 
					 | 
				
			||||||
                    return ['--use-compress-program', 'unzstd --long=30'];
 | 
					 | 
				
			||||||
                case constants_1.CompressionMethod.ZstdWithoutLong:
 | 
					 | 
				
			||||||
                    return ['--use-compress-program', 'unzstd'];
 | 
					 | 
				
			||||||
                default:
 | 
					 | 
				
			||||||
                    return ['-z'];
 | 
					 | 
				
			||||||
            }
 | 
					 | 
				
			||||||
        }
 | 
					 | 
				
			||||||
        const args = [
 | 
					 | 
				
			||||||
            ...getCompressionProgram(),
 | 
					 | 
				
			||||||
            '-tf',
 | 
					 | 
				
			||||||
            archivePath.replace(new RegExp(`\\${path.sep}`, 'g'), '/'),
 | 
					 | 
				
			||||||
            '-P'
 | 
					 | 
				
			||||||
        ];
 | 
					 | 
				
			||||||
        yield execTar(args, compressionMethod);
 | 
					 | 
				
			||||||
    });
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
exports.listTar = listTar;
 | 
					 | 
				
			||||||
//# sourceMappingURL=tar.js.map
 | 
					//# sourceMappingURL=tar.js.map
 | 
				
			||||||
 | 
					
 | 
				
			||||||
/***/ }),
 | 
					/***/ }),
 | 
				
			||||||
@@ -1267,9 +1263,16 @@ function getDownloadOptions(copy) {
 | 
				
			|||||||
            result.segmentTimeoutInMs = copy.segmentTimeoutInMs;
 | 
					            result.segmentTimeoutInMs = copy.segmentTimeoutInMs;
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					    const segmentDownloadTimeoutMins = process.env['SEGMENT_DOWNLOAD_TIMEOUT_MINS'];
 | 
				
			||||||
 | 
					    if (segmentDownloadTimeoutMins &&
 | 
				
			||||||
 | 
					        !isNaN(Number(segmentDownloadTimeoutMins)) &&
 | 
				
			||||||
 | 
					        isFinite(Number(segmentDownloadTimeoutMins))) {
 | 
				
			||||||
 | 
					        result.segmentTimeoutInMs = Number(segmentDownloadTimeoutMins) * 60 * 1000;
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
    core.debug(`Use Azure SDK: ${result.useAzureSdk}`);
 | 
					    core.debug(`Use Azure SDK: ${result.useAzureSdk}`);
 | 
				
			||||||
    core.debug(`Download concurrency: ${result.downloadConcurrency}`);
 | 
					    core.debug(`Download concurrency: ${result.downloadConcurrency}`);
 | 
				
			||||||
    core.debug(`Request timeout (ms): ${result.timeoutInMs}`);
 | 
					    core.debug(`Request timeout (ms): ${result.timeoutInMs}`);
 | 
				
			||||||
 | 
					    core.debug(`Cache segment download timeout mins env var: ${process.env['SEGMENT_DOWNLOAD_TIMEOUT_MINS']}`);
 | 
				
			||||||
    core.debug(`Segment download timeout (ms): ${result.segmentTimeoutInMs}`);
 | 
					    core.debug(`Segment download timeout (ms): ${result.segmentTimeoutInMs}`);
 | 
				
			||||||
    return result;
 | 
					    return result;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
@@ -65425,7 +65428,6 @@ const JOB_CONTEXT_PARAMETER = 'workflow-job-context';
 | 
				
			|||||||
const CACHE_DISABLED_PARAMETER = 'cache-disabled';
 | 
					const CACHE_DISABLED_PARAMETER = 'cache-disabled';
 | 
				
			||||||
const CACHE_READONLY_PARAMETER = 'cache-read-only';
 | 
					const CACHE_READONLY_PARAMETER = 'cache-read-only';
 | 
				
			||||||
const CACHE_WRITEONLY_PARAMETER = 'cache-write-only';
 | 
					const CACHE_WRITEONLY_PARAMETER = 'cache-write-only';
 | 
				
			||||||
const CACHE_TIMEOUT_PARAMETER = 'cache-read-timeout';
 | 
					 | 
				
			||||||
const STRICT_CACHE_MATCH_PARAMETER = 'gradle-home-cache-strict-match';
 | 
					const STRICT_CACHE_MATCH_PARAMETER = 'gradle-home-cache-strict-match';
 | 
				
			||||||
const CACHE_DEBUG_VAR = 'GRADLE_BUILD_ACTION_CACHE_DEBUG_ENABLED';
 | 
					const CACHE_DEBUG_VAR = 'GRADLE_BUILD_ACTION_CACHE_DEBUG_ENABLED';
 | 
				
			||||||
const CACHE_KEY_PREFIX_VAR = 'GRADLE_BUILD_ACTION_CACHE_KEY_PREFIX';
 | 
					const CACHE_KEY_PREFIX_VAR = 'GRADLE_BUILD_ACTION_CACHE_KEY_PREFIX';
 | 
				
			||||||
@@ -65433,6 +65435,8 @@ const CACHE_KEY_OS_VAR = 'GRADLE_BUILD_ACTION_CACHE_KEY_ENVIRONMENT';
 | 
				
			|||||||
const CACHE_KEY_JOB_VAR = 'GRADLE_BUILD_ACTION_CACHE_KEY_JOB';
 | 
					const CACHE_KEY_JOB_VAR = 'GRADLE_BUILD_ACTION_CACHE_KEY_JOB';
 | 
				
			||||||
const CACHE_KEY_JOB_INSTANCE_VAR = 'GRADLE_BUILD_ACTION_CACHE_KEY_JOB_INSTANCE';
 | 
					const CACHE_KEY_JOB_INSTANCE_VAR = 'GRADLE_BUILD_ACTION_CACHE_KEY_JOB_INSTANCE';
 | 
				
			||||||
const CACHE_KEY_JOB_EXECUTION_VAR = 'GRADLE_BUILD_ACTION_CACHE_KEY_JOB_EXECUTION';
 | 
					const CACHE_KEY_JOB_EXECUTION_VAR = 'GRADLE_BUILD_ACTION_CACHE_KEY_JOB_EXECUTION';
 | 
				
			||||||
 | 
					const SEGMENT_DOWNLOAD_TIMEOUT_VAR = 'SEGMENT_DOWNLOAD_TIMEOUT_MINS';
 | 
				
			||||||
 | 
					const SEGMENT_DOWNLOAD_TIMEOUT_DEFAULT = 10 * 60 * 1000;
 | 
				
			||||||
function isCacheDisabled() {
 | 
					function isCacheDisabled() {
 | 
				
			||||||
    if (!cache.isFeatureAvailable()) {
 | 
					    if (!cache.isFeatureAvailable()) {
 | 
				
			||||||
        return true;
 | 
					        return true;
 | 
				
			||||||
@@ -65452,9 +65456,6 @@ function isCacheDebuggingEnabled() {
 | 
				
			|||||||
    return process.env[CACHE_DEBUG_VAR] ? true : false;
 | 
					    return process.env[CACHE_DEBUG_VAR] ? true : false;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
exports.isCacheDebuggingEnabled = isCacheDebuggingEnabled;
 | 
					exports.isCacheDebuggingEnabled = isCacheDebuggingEnabled;
 | 
				
			||||||
function getCacheReadTimeoutMs() {
 | 
					 | 
				
			||||||
    return parseInt(core.getInput(CACHE_TIMEOUT_PARAMETER)) * 1000;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
class CacheKey {
 | 
					class CacheKey {
 | 
				
			||||||
    constructor(key, restoreKeys) {
 | 
					    constructor(key, restoreKeys) {
 | 
				
			||||||
        this.key = key;
 | 
					        this.key = key;
 | 
				
			||||||
@@ -65512,9 +65513,10 @@ function restoreCache(cachePath, cacheKey, cacheRestoreKeys, listener) {
 | 
				
			|||||||
    return __awaiter(this, void 0, void 0, function* () {
 | 
					    return __awaiter(this, void 0, void 0, function* () {
 | 
				
			||||||
        listener.markRequested(cacheKey, cacheRestoreKeys);
 | 
					        listener.markRequested(cacheKey, cacheRestoreKeys);
 | 
				
			||||||
        try {
 | 
					        try {
 | 
				
			||||||
            const restoredEntry = yield cache.restoreCache(cachePath, cacheKey, cacheRestoreKeys, {
 | 
					            const cacheRestoreOptions = process.env[SEGMENT_DOWNLOAD_TIMEOUT_VAR]
 | 
				
			||||||
                segmentTimeoutInMs: getCacheReadTimeoutMs()
 | 
					                ? {}
 | 
				
			||||||
            });
 | 
					                : { segmentTimeoutInMs: SEGMENT_DOWNLOAD_TIMEOUT_DEFAULT };
 | 
				
			||||||
 | 
					            const restoredEntry = yield cache.restoreCache(cachePath, cacheKey, cacheRestoreKeys, cacheRestoreOptions);
 | 
				
			||||||
            if (restoredEntry !== undefined) {
 | 
					            if (restoredEntry !== undefined) {
 | 
				
			||||||
                listener.markRestored(restoredEntry.key, restoredEntry.size);
 | 
					                listener.markRestored(restoredEntry.key, restoredEntry.size);
 | 
				
			||||||
            }
 | 
					            }
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										2
									
								
								dist/post/index.js.map
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										2
									
								
								dist/post/index.js.map
									
									
									
									
										vendored
									
									
								
							
										
											
												File diff suppressed because one or more lines are too long
											
										
									
								
							
							
								
								
									
										14
									
								
								package-lock.json
									
									
									
										generated
									
									
									
								
							
							
						
						
									
										14
									
								
								package-lock.json
									
									
									
										generated
									
									
									
								
							@@ -10,7 +10,7 @@
 | 
				
			|||||||
      "hasInstallScript": true,
 | 
					      "hasInstallScript": true,
 | 
				
			||||||
      "license": "MIT",
 | 
					      "license": "MIT",
 | 
				
			||||||
      "dependencies": {
 | 
					      "dependencies": {
 | 
				
			||||||
        "@actions/cache": "3.0.3",
 | 
					        "@actions/cache": "3.0.4",
 | 
				
			||||||
        "@actions/core": "1.9.1",
 | 
					        "@actions/core": "1.9.1",
 | 
				
			||||||
        "@actions/exec": "1.1.1",
 | 
					        "@actions/exec": "1.1.1",
 | 
				
			||||||
        "@actions/github": "5.0.3",
 | 
					        "@actions/github": "5.0.3",
 | 
				
			||||||
@@ -37,9 +37,9 @@
 | 
				
			|||||||
      }
 | 
					      }
 | 
				
			||||||
    },
 | 
					    },
 | 
				
			||||||
    "node_modules/@actions/cache": {
 | 
					    "node_modules/@actions/cache": {
 | 
				
			||||||
      "version": "3.0.3",
 | 
					      "version": "3.0.4",
 | 
				
			||||||
      "resolved": "https://registry.npmjs.org/@actions/cache/-/cache-3.0.3.tgz",
 | 
					      "resolved": "https://registry.npmjs.org/@actions/cache/-/cache-3.0.4.tgz",
 | 
				
			||||||
      "integrity": "sha512-kn0pZRQNFRg1IQnW/N7uTNbbLqYalvQW2bmrznn3C34LMY/rSuEmH6Uo69HDh335Q0vKs9kg/jsIarzUBKzEXg==",
 | 
					      "integrity": "sha512-9RwVL8/ISJoYWFNH1wR/C26E+M3HDkGPWmbFJMMCKwTkjbNZJreMT4XaR/EB1bheIvN4PREQxEQQVJ18IPnf/Q==",
 | 
				
			||||||
      "dependencies": {
 | 
					      "dependencies": {
 | 
				
			||||||
        "@actions/core": "^1.2.6",
 | 
					        "@actions/core": "^1.2.6",
 | 
				
			||||||
        "@actions/exec": "^1.0.1",
 | 
					        "@actions/exec": "^1.0.1",
 | 
				
			||||||
@@ -6940,9 +6940,9 @@
 | 
				
			|||||||
  },
 | 
					  },
 | 
				
			||||||
  "dependencies": {
 | 
					  "dependencies": {
 | 
				
			||||||
    "@actions/cache": {
 | 
					    "@actions/cache": {
 | 
				
			||||||
      "version": "3.0.3",
 | 
					      "version": "3.0.4",
 | 
				
			||||||
      "resolved": "https://registry.npmjs.org/@actions/cache/-/cache-3.0.3.tgz",
 | 
					      "resolved": "https://registry.npmjs.org/@actions/cache/-/cache-3.0.4.tgz",
 | 
				
			||||||
      "integrity": "sha512-kn0pZRQNFRg1IQnW/N7uTNbbLqYalvQW2bmrznn3C34LMY/rSuEmH6Uo69HDh335Q0vKs9kg/jsIarzUBKzEXg==",
 | 
					      "integrity": "sha512-9RwVL8/ISJoYWFNH1wR/C26E+M3HDkGPWmbFJMMCKwTkjbNZJreMT4XaR/EB1bheIvN4PREQxEQQVJ18IPnf/Q==",
 | 
				
			||||||
      "requires": {
 | 
					      "requires": {
 | 
				
			||||||
        "@actions/core": "^1.2.6",
 | 
					        "@actions/core": "^1.2.6",
 | 
				
			||||||
        "@actions/exec": "^1.0.1",
 | 
					        "@actions/exec": "^1.0.1",
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -25,7 +25,7 @@
 | 
				
			|||||||
  ],
 | 
					  ],
 | 
				
			||||||
  "license": "MIT",
 | 
					  "license": "MIT",
 | 
				
			||||||
  "dependencies": {
 | 
					  "dependencies": {
 | 
				
			||||||
    "@actions/cache": "3.0.3",
 | 
					    "@actions/cache": "3.0.4",
 | 
				
			||||||
    "@actions/core": "1.9.1",
 | 
					    "@actions/core": "1.9.1",
 | 
				
			||||||
    "@actions/exec": "1.1.1",
 | 
					    "@actions/exec": "1.1.1",
 | 
				
			||||||
    "@actions/github": "5.0.3",
 | 
					    "@actions/github": "5.0.3",
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -15,7 +15,6 @@ const JOB_CONTEXT_PARAMETER = 'workflow-job-context'
 | 
				
			|||||||
const CACHE_DISABLED_PARAMETER = 'cache-disabled'
 | 
					const CACHE_DISABLED_PARAMETER = 'cache-disabled'
 | 
				
			||||||
const CACHE_READONLY_PARAMETER = 'cache-read-only'
 | 
					const CACHE_READONLY_PARAMETER = 'cache-read-only'
 | 
				
			||||||
const CACHE_WRITEONLY_PARAMETER = 'cache-write-only'
 | 
					const CACHE_WRITEONLY_PARAMETER = 'cache-write-only'
 | 
				
			||||||
const CACHE_TIMEOUT_PARAMETER = 'cache-read-timeout'
 | 
					 | 
				
			||||||
const STRICT_CACHE_MATCH_PARAMETER = 'gradle-home-cache-strict-match'
 | 
					const STRICT_CACHE_MATCH_PARAMETER = 'gradle-home-cache-strict-match'
 | 
				
			||||||
const CACHE_DEBUG_VAR = 'GRADLE_BUILD_ACTION_CACHE_DEBUG_ENABLED'
 | 
					const CACHE_DEBUG_VAR = 'GRADLE_BUILD_ACTION_CACHE_DEBUG_ENABLED'
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -25,6 +24,9 @@ const CACHE_KEY_JOB_VAR = 'GRADLE_BUILD_ACTION_CACHE_KEY_JOB'
 | 
				
			|||||||
const CACHE_KEY_JOB_INSTANCE_VAR = 'GRADLE_BUILD_ACTION_CACHE_KEY_JOB_INSTANCE'
 | 
					const CACHE_KEY_JOB_INSTANCE_VAR = 'GRADLE_BUILD_ACTION_CACHE_KEY_JOB_INSTANCE'
 | 
				
			||||||
const CACHE_KEY_JOB_EXECUTION_VAR = 'GRADLE_BUILD_ACTION_CACHE_KEY_JOB_EXECUTION'
 | 
					const CACHE_KEY_JOB_EXECUTION_VAR = 'GRADLE_BUILD_ACTION_CACHE_KEY_JOB_EXECUTION'
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					const SEGMENT_DOWNLOAD_TIMEOUT_VAR = 'SEGMENT_DOWNLOAD_TIMEOUT_MINS'
 | 
				
			||||||
 | 
					const SEGMENT_DOWNLOAD_TIMEOUT_DEFAULT = 10 * 60 * 1000 // 10 minutes
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export function isCacheDisabled(): boolean {
 | 
					export function isCacheDisabled(): boolean {
 | 
				
			||||||
    if (!cache.isFeatureAvailable()) {
 | 
					    if (!cache.isFeatureAvailable()) {
 | 
				
			||||||
        return true
 | 
					        return true
 | 
				
			||||||
@@ -44,10 +46,6 @@ export function isCacheDebuggingEnabled(): boolean {
 | 
				
			|||||||
    return process.env[CACHE_DEBUG_VAR] ? true : false
 | 
					    return process.env[CACHE_DEBUG_VAR] ? true : false
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
function getCacheReadTimeoutMs(): number {
 | 
					 | 
				
			||||||
    return parseInt(core.getInput(CACHE_TIMEOUT_PARAMETER)) * 1000
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
/**
 | 
					/**
 | 
				
			||||||
 * Represents a key used to restore a cache entry.
 | 
					 * Represents a key used to restore a cache entry.
 | 
				
			||||||
 * The Github Actions cache will first try for an exact match on the key.
 | 
					 * The Github Actions cache will first try for an exact match on the key.
 | 
				
			||||||
@@ -153,9 +151,11 @@ export async function restoreCache(
 | 
				
			|||||||
): Promise<cache.CacheEntry | undefined> {
 | 
					): Promise<cache.CacheEntry | undefined> {
 | 
				
			||||||
    listener.markRequested(cacheKey, cacheRestoreKeys)
 | 
					    listener.markRequested(cacheKey, cacheRestoreKeys)
 | 
				
			||||||
    try {
 | 
					    try {
 | 
				
			||||||
        const restoredEntry = await cache.restoreCache(cachePath, cacheKey, cacheRestoreKeys, {
 | 
					        // Only override the read timeout if the SEGMENT_DOWNLOAD_TIMEOUT_MINS env var has NOT been set
 | 
				
			||||||
            segmentTimeoutInMs: getCacheReadTimeoutMs()
 | 
					        const cacheRestoreOptions = process.env[SEGMENT_DOWNLOAD_TIMEOUT_VAR]
 | 
				
			||||||
        })
 | 
					            ? {}
 | 
				
			||||||
 | 
					            : {segmentTimeoutInMs: SEGMENT_DOWNLOAD_TIMEOUT_DEFAULT}
 | 
				
			||||||
 | 
					        const restoredEntry = await cache.restoreCache(cachePath, cacheKey, cacheRestoreKeys, cacheRestoreOptions)
 | 
				
			||||||
        if (restoredEntry !== undefined) {
 | 
					        if (restoredEntry !== undefined) {
 | 
				
			||||||
            listener.markRestored(restoredEntry.key, restoredEntry.size)
 | 
					            listener.markRestored(restoredEntry.key, restoredEntry.size)
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user