mirror of https://github.com/actions/cache.git
Formatting and stylistic cleanup
This commit is contained in:
parent
d2ae025c8f
commit
3f69ac8572
|
@ -12641,9 +12641,9 @@ function restoreCache(paths, primaryKey, restoreKeys, options, enableCrossOsArch
|
||||||
const cacheServiceVersion = config.getCacheServiceVersion();
|
const cacheServiceVersion = config.getCacheServiceVersion();
|
||||||
console.debug(`Cache service version: ${cacheServiceVersion}`);
|
console.debug(`Cache service version: ${cacheServiceVersion}`);
|
||||||
switch (cacheServiceVersion) {
|
switch (cacheServiceVersion) {
|
||||||
case "v2":
|
case 'v2':
|
||||||
return yield restoreCachev2(paths, primaryKey, restoreKeys, options, enableCrossOsArchive);
|
return yield restoreCachev2(paths, primaryKey, restoreKeys, options, enableCrossOsArchive);
|
||||||
case "v1":
|
case 'v1':
|
||||||
default:
|
default:
|
||||||
return yield restoreCachev1(paths, primaryKey, restoreKeys, options, enableCrossOsArchive);
|
return yield restoreCachev1(paths, primaryKey, restoreKeys, options, enableCrossOsArchive);
|
||||||
}
|
}
|
||||||
|
@ -12755,7 +12755,7 @@ function restoreCachev2(paths, primaryKey, restoreKeys, options, enableCrossOsAr
|
||||||
workflowJobRunBackendId: backendIds.workflowJobRunBackendId,
|
workflowJobRunBackendId: backendIds.workflowJobRunBackendId,
|
||||||
key: primaryKey,
|
key: primaryKey,
|
||||||
restoreKeys: restoreKeys,
|
restoreKeys: restoreKeys,
|
||||||
version: utils.getCacheVersion(paths, compressionMethod, enableCrossOsArchive),
|
version: utils.getCacheVersion(paths, compressionMethod, enableCrossOsArchive)
|
||||||
};
|
};
|
||||||
core.debug(`GetCacheEntryDownloadURLRequest: ${JSON.stringify(twirpClient)}`);
|
core.debug(`GetCacheEntryDownloadURLRequest: ${JSON.stringify(twirpClient)}`);
|
||||||
const response = yield twirpClient.GetCacheEntryDownloadURL(request);
|
const response = yield twirpClient.GetCacheEntryDownloadURL(request);
|
||||||
|
@ -12812,9 +12812,9 @@ function saveCache(paths, key, options, enableCrossOsArchive = false) {
|
||||||
const cacheServiceVersion = config.getCacheServiceVersion();
|
const cacheServiceVersion = config.getCacheServiceVersion();
|
||||||
console.debug(`Cache Service Version: ${cacheServiceVersion}`);
|
console.debug(`Cache Service Version: ${cacheServiceVersion}`);
|
||||||
switch (cacheServiceVersion) {
|
switch (cacheServiceVersion) {
|
||||||
case "v2":
|
case 'v2':
|
||||||
return yield saveCachev2(paths, key, options, enableCrossOsArchive);
|
return yield saveCachev2(paths, key, options, enableCrossOsArchive);
|
||||||
case "v1":
|
case 'v1':
|
||||||
default:
|
default:
|
||||||
return yield saveCachev1(paths, key, options, enableCrossOsArchive);
|
return yield saveCachev1(paths, key, options, enableCrossOsArchive);
|
||||||
}
|
}
|
||||||
|
@ -12953,7 +12953,7 @@ function saveCachev2(paths, key, options, enableCrossOsArchive = false) {
|
||||||
workflowJobRunBackendId: backendIds.workflowJobRunBackendId,
|
workflowJobRunBackendId: backendIds.workflowJobRunBackendId,
|
||||||
key: key,
|
key: key,
|
||||||
version: version,
|
version: version,
|
||||||
sizeBytes: `${archiveFileSize}`,
|
sizeBytes: `${archiveFileSize}`
|
||||||
};
|
};
|
||||||
const finalizeResponse = yield twirpClient.FinalizeCacheEntryUpload(finalizeRequest);
|
const finalizeResponse = yield twirpClient.FinalizeCacheEntryUpload(finalizeRequest);
|
||||||
core.debug(`FinalizeCacheEntryUploadResponse: ${JSON.stringify(finalizeResponse)}`);
|
core.debug(`FinalizeCacheEntryUploadResponse: ${JSON.stringify(finalizeResponse)}`);
|
||||||
|
@ -14734,7 +14734,7 @@ const storage_blob_1 = __nccwpck_require__(3864);
|
||||||
function DownloadCacheFile(signedUploadURL, archivePath) {
|
function DownloadCacheFile(signedUploadURL, archivePath) {
|
||||||
return __awaiter(this, void 0, void 0, function* () {
|
return __awaiter(this, void 0, void 0, function* () {
|
||||||
const downloadOptions = {
|
const downloadOptions = {
|
||||||
maxRetryRequests: 5,
|
maxRetryRequests: 5
|
||||||
};
|
};
|
||||||
// TODO: tighten the configuration and pass the appropriate user-agent
|
// TODO: tighten the configuration and pass the appropriate user-agent
|
||||||
const blobClient = new storage_blob_1.BlobClient(signedUploadURL);
|
const blobClient = new storage_blob_1.BlobClient(signedUploadURL);
|
||||||
|
@ -14797,7 +14797,7 @@ function UploadCacheFile(signedUploadURL, archivePath) {
|
||||||
const uploadOptions = {
|
const uploadOptions = {
|
||||||
blockSize: 4 * 1024 * 1024,
|
blockSize: 4 * 1024 * 1024,
|
||||||
concurrency: 4,
|
concurrency: 4,
|
||||||
maxSingleShotSize: 8 * 1024 * 1024, // 8 MiB initial transfer size
|
maxSingleShotSize: 8 * 1024 * 1024 // 8 MiB initial transfer size
|
||||||
};
|
};
|
||||||
const blobClient = new storage_blob_1.BlobClient(signedUploadURL);
|
const blobClient = new storage_blob_1.BlobClient(signedUploadURL);
|
||||||
const blockBlobClient = blobClient.getBlockBlobClient();
|
const blockBlobClient = blobClient.getBlockBlobClient();
|
||||||
|
@ -15368,9 +15368,11 @@ function getCacheServiceURL() {
|
||||||
const version = getCacheServiceVersion();
|
const version = getCacheServiceVersion();
|
||||||
switch (version) {
|
switch (version) {
|
||||||
case 'v1':
|
case 'v1':
|
||||||
return process.env['ACTIONS_CACHE_URL'] || process.env['ACTIONS_RESULTS_URL'] || "";
|
return (process.env['ACTIONS_CACHE_URL'] ||
|
||||||
|
process.env['ACTIONS_RESULTS_URL'] ||
|
||||||
|
'');
|
||||||
case 'v2':
|
case 'v2':
|
||||||
return process.env['ACTIONS_RESULTS_URL'] || "";
|
return process.env['ACTIONS_RESULTS_URL'] || '';
|
||||||
default:
|
default:
|
||||||
throw new Error(`Unsupported cache service version: ${version}`);
|
throw new Error(`Unsupported cache service version: ${version}`);
|
||||||
}
|
}
|
||||||
|
|
|
@ -12641,9 +12641,9 @@ function restoreCache(paths, primaryKey, restoreKeys, options, enableCrossOsArch
|
||||||
const cacheServiceVersion = config.getCacheServiceVersion();
|
const cacheServiceVersion = config.getCacheServiceVersion();
|
||||||
console.debug(`Cache service version: ${cacheServiceVersion}`);
|
console.debug(`Cache service version: ${cacheServiceVersion}`);
|
||||||
switch (cacheServiceVersion) {
|
switch (cacheServiceVersion) {
|
||||||
case "v2":
|
case 'v2':
|
||||||
return yield restoreCachev2(paths, primaryKey, restoreKeys, options, enableCrossOsArchive);
|
return yield restoreCachev2(paths, primaryKey, restoreKeys, options, enableCrossOsArchive);
|
||||||
case "v1":
|
case 'v1':
|
||||||
default:
|
default:
|
||||||
return yield restoreCachev1(paths, primaryKey, restoreKeys, options, enableCrossOsArchive);
|
return yield restoreCachev1(paths, primaryKey, restoreKeys, options, enableCrossOsArchive);
|
||||||
}
|
}
|
||||||
|
@ -12755,7 +12755,7 @@ function restoreCachev2(paths, primaryKey, restoreKeys, options, enableCrossOsAr
|
||||||
workflowJobRunBackendId: backendIds.workflowJobRunBackendId,
|
workflowJobRunBackendId: backendIds.workflowJobRunBackendId,
|
||||||
key: primaryKey,
|
key: primaryKey,
|
||||||
restoreKeys: restoreKeys,
|
restoreKeys: restoreKeys,
|
||||||
version: utils.getCacheVersion(paths, compressionMethod, enableCrossOsArchive),
|
version: utils.getCacheVersion(paths, compressionMethod, enableCrossOsArchive)
|
||||||
};
|
};
|
||||||
core.debug(`GetCacheEntryDownloadURLRequest: ${JSON.stringify(twirpClient)}`);
|
core.debug(`GetCacheEntryDownloadURLRequest: ${JSON.stringify(twirpClient)}`);
|
||||||
const response = yield twirpClient.GetCacheEntryDownloadURL(request);
|
const response = yield twirpClient.GetCacheEntryDownloadURL(request);
|
||||||
|
@ -12812,9 +12812,9 @@ function saveCache(paths, key, options, enableCrossOsArchive = false) {
|
||||||
const cacheServiceVersion = config.getCacheServiceVersion();
|
const cacheServiceVersion = config.getCacheServiceVersion();
|
||||||
console.debug(`Cache Service Version: ${cacheServiceVersion}`);
|
console.debug(`Cache Service Version: ${cacheServiceVersion}`);
|
||||||
switch (cacheServiceVersion) {
|
switch (cacheServiceVersion) {
|
||||||
case "v2":
|
case 'v2':
|
||||||
return yield saveCachev2(paths, key, options, enableCrossOsArchive);
|
return yield saveCachev2(paths, key, options, enableCrossOsArchive);
|
||||||
case "v1":
|
case 'v1':
|
||||||
default:
|
default:
|
||||||
return yield saveCachev1(paths, key, options, enableCrossOsArchive);
|
return yield saveCachev1(paths, key, options, enableCrossOsArchive);
|
||||||
}
|
}
|
||||||
|
@ -12953,7 +12953,7 @@ function saveCachev2(paths, key, options, enableCrossOsArchive = false) {
|
||||||
workflowJobRunBackendId: backendIds.workflowJobRunBackendId,
|
workflowJobRunBackendId: backendIds.workflowJobRunBackendId,
|
||||||
key: key,
|
key: key,
|
||||||
version: version,
|
version: version,
|
||||||
sizeBytes: `${archiveFileSize}`,
|
sizeBytes: `${archiveFileSize}`
|
||||||
};
|
};
|
||||||
const finalizeResponse = yield twirpClient.FinalizeCacheEntryUpload(finalizeRequest);
|
const finalizeResponse = yield twirpClient.FinalizeCacheEntryUpload(finalizeRequest);
|
||||||
core.debug(`FinalizeCacheEntryUploadResponse: ${JSON.stringify(finalizeResponse)}`);
|
core.debug(`FinalizeCacheEntryUploadResponse: ${JSON.stringify(finalizeResponse)}`);
|
||||||
|
@ -14734,7 +14734,7 @@ const storage_blob_1 = __nccwpck_require__(3864);
|
||||||
function DownloadCacheFile(signedUploadURL, archivePath) {
|
function DownloadCacheFile(signedUploadURL, archivePath) {
|
||||||
return __awaiter(this, void 0, void 0, function* () {
|
return __awaiter(this, void 0, void 0, function* () {
|
||||||
const downloadOptions = {
|
const downloadOptions = {
|
||||||
maxRetryRequests: 5,
|
maxRetryRequests: 5
|
||||||
};
|
};
|
||||||
// TODO: tighten the configuration and pass the appropriate user-agent
|
// TODO: tighten the configuration and pass the appropriate user-agent
|
||||||
const blobClient = new storage_blob_1.BlobClient(signedUploadURL);
|
const blobClient = new storage_blob_1.BlobClient(signedUploadURL);
|
||||||
|
@ -14797,7 +14797,7 @@ function UploadCacheFile(signedUploadURL, archivePath) {
|
||||||
const uploadOptions = {
|
const uploadOptions = {
|
||||||
blockSize: 4 * 1024 * 1024,
|
blockSize: 4 * 1024 * 1024,
|
||||||
concurrency: 4,
|
concurrency: 4,
|
||||||
maxSingleShotSize: 8 * 1024 * 1024, // 8 MiB initial transfer size
|
maxSingleShotSize: 8 * 1024 * 1024 // 8 MiB initial transfer size
|
||||||
};
|
};
|
||||||
const blobClient = new storage_blob_1.BlobClient(signedUploadURL);
|
const blobClient = new storage_blob_1.BlobClient(signedUploadURL);
|
||||||
const blockBlobClient = blobClient.getBlockBlobClient();
|
const blockBlobClient = blobClient.getBlockBlobClient();
|
||||||
|
@ -15368,9 +15368,11 @@ function getCacheServiceURL() {
|
||||||
const version = getCacheServiceVersion();
|
const version = getCacheServiceVersion();
|
||||||
switch (version) {
|
switch (version) {
|
||||||
case 'v1':
|
case 'v1':
|
||||||
return process.env['ACTIONS_CACHE_URL'] || process.env['ACTIONS_RESULTS_URL'] || "";
|
return (process.env['ACTIONS_CACHE_URL'] ||
|
||||||
|
process.env['ACTIONS_RESULTS_URL'] ||
|
||||||
|
'');
|
||||||
case 'v2':
|
case 'v2':
|
||||||
return process.env['ACTIONS_RESULTS_URL'] || "";
|
return process.env['ACTIONS_RESULTS_URL'] || '';
|
||||||
default:
|
default:
|
||||||
throw new Error(`Unsupported cache service version: ${version}`);
|
throw new Error(`Unsupported cache service version: ${version}`);
|
||||||
}
|
}
|
||||||
|
|
|
@ -12641,9 +12641,9 @@ function restoreCache(paths, primaryKey, restoreKeys, options, enableCrossOsArch
|
||||||
const cacheServiceVersion = config.getCacheServiceVersion();
|
const cacheServiceVersion = config.getCacheServiceVersion();
|
||||||
console.debug(`Cache service version: ${cacheServiceVersion}`);
|
console.debug(`Cache service version: ${cacheServiceVersion}`);
|
||||||
switch (cacheServiceVersion) {
|
switch (cacheServiceVersion) {
|
||||||
case "v2":
|
case 'v2':
|
||||||
return yield restoreCachev2(paths, primaryKey, restoreKeys, options, enableCrossOsArchive);
|
return yield restoreCachev2(paths, primaryKey, restoreKeys, options, enableCrossOsArchive);
|
||||||
case "v1":
|
case 'v1':
|
||||||
default:
|
default:
|
||||||
return yield restoreCachev1(paths, primaryKey, restoreKeys, options, enableCrossOsArchive);
|
return yield restoreCachev1(paths, primaryKey, restoreKeys, options, enableCrossOsArchive);
|
||||||
}
|
}
|
||||||
|
@ -12755,7 +12755,7 @@ function restoreCachev2(paths, primaryKey, restoreKeys, options, enableCrossOsAr
|
||||||
workflowJobRunBackendId: backendIds.workflowJobRunBackendId,
|
workflowJobRunBackendId: backendIds.workflowJobRunBackendId,
|
||||||
key: primaryKey,
|
key: primaryKey,
|
||||||
restoreKeys: restoreKeys,
|
restoreKeys: restoreKeys,
|
||||||
version: utils.getCacheVersion(paths, compressionMethod, enableCrossOsArchive),
|
version: utils.getCacheVersion(paths, compressionMethod, enableCrossOsArchive)
|
||||||
};
|
};
|
||||||
core.debug(`GetCacheEntryDownloadURLRequest: ${JSON.stringify(twirpClient)}`);
|
core.debug(`GetCacheEntryDownloadURLRequest: ${JSON.stringify(twirpClient)}`);
|
||||||
const response = yield twirpClient.GetCacheEntryDownloadURL(request);
|
const response = yield twirpClient.GetCacheEntryDownloadURL(request);
|
||||||
|
@ -12812,9 +12812,9 @@ function saveCache(paths, key, options, enableCrossOsArchive = false) {
|
||||||
const cacheServiceVersion = config.getCacheServiceVersion();
|
const cacheServiceVersion = config.getCacheServiceVersion();
|
||||||
console.debug(`Cache Service Version: ${cacheServiceVersion}`);
|
console.debug(`Cache Service Version: ${cacheServiceVersion}`);
|
||||||
switch (cacheServiceVersion) {
|
switch (cacheServiceVersion) {
|
||||||
case "v2":
|
case 'v2':
|
||||||
return yield saveCachev2(paths, key, options, enableCrossOsArchive);
|
return yield saveCachev2(paths, key, options, enableCrossOsArchive);
|
||||||
case "v1":
|
case 'v1':
|
||||||
default:
|
default:
|
||||||
return yield saveCachev1(paths, key, options, enableCrossOsArchive);
|
return yield saveCachev1(paths, key, options, enableCrossOsArchive);
|
||||||
}
|
}
|
||||||
|
@ -12953,7 +12953,7 @@ function saveCachev2(paths, key, options, enableCrossOsArchive = false) {
|
||||||
workflowJobRunBackendId: backendIds.workflowJobRunBackendId,
|
workflowJobRunBackendId: backendIds.workflowJobRunBackendId,
|
||||||
key: key,
|
key: key,
|
||||||
version: version,
|
version: version,
|
||||||
sizeBytes: `${archiveFileSize}`,
|
sizeBytes: `${archiveFileSize}`
|
||||||
};
|
};
|
||||||
const finalizeResponse = yield twirpClient.FinalizeCacheEntryUpload(finalizeRequest);
|
const finalizeResponse = yield twirpClient.FinalizeCacheEntryUpload(finalizeRequest);
|
||||||
core.debug(`FinalizeCacheEntryUploadResponse: ${JSON.stringify(finalizeResponse)}`);
|
core.debug(`FinalizeCacheEntryUploadResponse: ${JSON.stringify(finalizeResponse)}`);
|
||||||
|
@ -14734,7 +14734,7 @@ const storage_blob_1 = __nccwpck_require__(3864);
|
||||||
function DownloadCacheFile(signedUploadURL, archivePath) {
|
function DownloadCacheFile(signedUploadURL, archivePath) {
|
||||||
return __awaiter(this, void 0, void 0, function* () {
|
return __awaiter(this, void 0, void 0, function* () {
|
||||||
const downloadOptions = {
|
const downloadOptions = {
|
||||||
maxRetryRequests: 5,
|
maxRetryRequests: 5
|
||||||
};
|
};
|
||||||
// TODO: tighten the configuration and pass the appropriate user-agent
|
// TODO: tighten the configuration and pass the appropriate user-agent
|
||||||
const blobClient = new storage_blob_1.BlobClient(signedUploadURL);
|
const blobClient = new storage_blob_1.BlobClient(signedUploadURL);
|
||||||
|
@ -14797,7 +14797,7 @@ function UploadCacheFile(signedUploadURL, archivePath) {
|
||||||
const uploadOptions = {
|
const uploadOptions = {
|
||||||
blockSize: 4 * 1024 * 1024,
|
blockSize: 4 * 1024 * 1024,
|
||||||
concurrency: 4,
|
concurrency: 4,
|
||||||
maxSingleShotSize: 8 * 1024 * 1024, // 8 MiB initial transfer size
|
maxSingleShotSize: 8 * 1024 * 1024 // 8 MiB initial transfer size
|
||||||
};
|
};
|
||||||
const blobClient = new storage_blob_1.BlobClient(signedUploadURL);
|
const blobClient = new storage_blob_1.BlobClient(signedUploadURL);
|
||||||
const blockBlobClient = blobClient.getBlockBlobClient();
|
const blockBlobClient = blobClient.getBlockBlobClient();
|
||||||
|
@ -15368,9 +15368,11 @@ function getCacheServiceURL() {
|
||||||
const version = getCacheServiceVersion();
|
const version = getCacheServiceVersion();
|
||||||
switch (version) {
|
switch (version) {
|
||||||
case 'v1':
|
case 'v1':
|
||||||
return process.env['ACTIONS_CACHE_URL'] || process.env['ACTIONS_RESULTS_URL'] || "";
|
return (process.env['ACTIONS_CACHE_URL'] ||
|
||||||
|
process.env['ACTIONS_RESULTS_URL'] ||
|
||||||
|
'');
|
||||||
case 'v2':
|
case 'v2':
|
||||||
return process.env['ACTIONS_RESULTS_URL'] || "";
|
return process.env['ACTIONS_RESULTS_URL'] || '';
|
||||||
default:
|
default:
|
||||||
throw new Error(`Unsupported cache service version: ${version}`);
|
throw new Error(`Unsupported cache service version: ${version}`);
|
||||||
}
|
}
|
||||||
|
|
|
@ -12641,9 +12641,9 @@ function restoreCache(paths, primaryKey, restoreKeys, options, enableCrossOsArch
|
||||||
const cacheServiceVersion = config.getCacheServiceVersion();
|
const cacheServiceVersion = config.getCacheServiceVersion();
|
||||||
console.debug(`Cache service version: ${cacheServiceVersion}`);
|
console.debug(`Cache service version: ${cacheServiceVersion}`);
|
||||||
switch (cacheServiceVersion) {
|
switch (cacheServiceVersion) {
|
||||||
case "v2":
|
case 'v2':
|
||||||
return yield restoreCachev2(paths, primaryKey, restoreKeys, options, enableCrossOsArchive);
|
return yield restoreCachev2(paths, primaryKey, restoreKeys, options, enableCrossOsArchive);
|
||||||
case "v1":
|
case 'v1':
|
||||||
default:
|
default:
|
||||||
return yield restoreCachev1(paths, primaryKey, restoreKeys, options, enableCrossOsArchive);
|
return yield restoreCachev1(paths, primaryKey, restoreKeys, options, enableCrossOsArchive);
|
||||||
}
|
}
|
||||||
|
@ -12755,7 +12755,7 @@ function restoreCachev2(paths, primaryKey, restoreKeys, options, enableCrossOsAr
|
||||||
workflowJobRunBackendId: backendIds.workflowJobRunBackendId,
|
workflowJobRunBackendId: backendIds.workflowJobRunBackendId,
|
||||||
key: primaryKey,
|
key: primaryKey,
|
||||||
restoreKeys: restoreKeys,
|
restoreKeys: restoreKeys,
|
||||||
version: utils.getCacheVersion(paths, compressionMethod, enableCrossOsArchive),
|
version: utils.getCacheVersion(paths, compressionMethod, enableCrossOsArchive)
|
||||||
};
|
};
|
||||||
core.debug(`GetCacheEntryDownloadURLRequest: ${JSON.stringify(twirpClient)}`);
|
core.debug(`GetCacheEntryDownloadURLRequest: ${JSON.stringify(twirpClient)}`);
|
||||||
const response = yield twirpClient.GetCacheEntryDownloadURL(request);
|
const response = yield twirpClient.GetCacheEntryDownloadURL(request);
|
||||||
|
@ -12812,9 +12812,9 @@ function saveCache(paths, key, options, enableCrossOsArchive = false) {
|
||||||
const cacheServiceVersion = config.getCacheServiceVersion();
|
const cacheServiceVersion = config.getCacheServiceVersion();
|
||||||
console.debug(`Cache Service Version: ${cacheServiceVersion}`);
|
console.debug(`Cache Service Version: ${cacheServiceVersion}`);
|
||||||
switch (cacheServiceVersion) {
|
switch (cacheServiceVersion) {
|
||||||
case "v2":
|
case 'v2':
|
||||||
return yield saveCachev2(paths, key, options, enableCrossOsArchive);
|
return yield saveCachev2(paths, key, options, enableCrossOsArchive);
|
||||||
case "v1":
|
case 'v1':
|
||||||
default:
|
default:
|
||||||
return yield saveCachev1(paths, key, options, enableCrossOsArchive);
|
return yield saveCachev1(paths, key, options, enableCrossOsArchive);
|
||||||
}
|
}
|
||||||
|
@ -12953,7 +12953,7 @@ function saveCachev2(paths, key, options, enableCrossOsArchive = false) {
|
||||||
workflowJobRunBackendId: backendIds.workflowJobRunBackendId,
|
workflowJobRunBackendId: backendIds.workflowJobRunBackendId,
|
||||||
key: key,
|
key: key,
|
||||||
version: version,
|
version: version,
|
||||||
sizeBytes: `${archiveFileSize}`,
|
sizeBytes: `${archiveFileSize}`
|
||||||
};
|
};
|
||||||
const finalizeResponse = yield twirpClient.FinalizeCacheEntryUpload(finalizeRequest);
|
const finalizeResponse = yield twirpClient.FinalizeCacheEntryUpload(finalizeRequest);
|
||||||
core.debug(`FinalizeCacheEntryUploadResponse: ${JSON.stringify(finalizeResponse)}`);
|
core.debug(`FinalizeCacheEntryUploadResponse: ${JSON.stringify(finalizeResponse)}`);
|
||||||
|
@ -14734,7 +14734,7 @@ const storage_blob_1 = __nccwpck_require__(3864);
|
||||||
function DownloadCacheFile(signedUploadURL, archivePath) {
|
function DownloadCacheFile(signedUploadURL, archivePath) {
|
||||||
return __awaiter(this, void 0, void 0, function* () {
|
return __awaiter(this, void 0, void 0, function* () {
|
||||||
const downloadOptions = {
|
const downloadOptions = {
|
||||||
maxRetryRequests: 5,
|
maxRetryRequests: 5
|
||||||
};
|
};
|
||||||
// TODO: tighten the configuration and pass the appropriate user-agent
|
// TODO: tighten the configuration and pass the appropriate user-agent
|
||||||
const blobClient = new storage_blob_1.BlobClient(signedUploadURL);
|
const blobClient = new storage_blob_1.BlobClient(signedUploadURL);
|
||||||
|
@ -14797,7 +14797,7 @@ function UploadCacheFile(signedUploadURL, archivePath) {
|
||||||
const uploadOptions = {
|
const uploadOptions = {
|
||||||
blockSize: 4 * 1024 * 1024,
|
blockSize: 4 * 1024 * 1024,
|
||||||
concurrency: 4,
|
concurrency: 4,
|
||||||
maxSingleShotSize: 8 * 1024 * 1024, // 8 MiB initial transfer size
|
maxSingleShotSize: 8 * 1024 * 1024 // 8 MiB initial transfer size
|
||||||
};
|
};
|
||||||
const blobClient = new storage_blob_1.BlobClient(signedUploadURL);
|
const blobClient = new storage_blob_1.BlobClient(signedUploadURL);
|
||||||
const blockBlobClient = blobClient.getBlockBlobClient();
|
const blockBlobClient = blobClient.getBlockBlobClient();
|
||||||
|
@ -15368,9 +15368,11 @@ function getCacheServiceURL() {
|
||||||
const version = getCacheServiceVersion();
|
const version = getCacheServiceVersion();
|
||||||
switch (version) {
|
switch (version) {
|
||||||
case 'v1':
|
case 'v1':
|
||||||
return process.env['ACTIONS_CACHE_URL'] || process.env['ACTIONS_RESULTS_URL'] || "";
|
return (process.env['ACTIONS_CACHE_URL'] ||
|
||||||
|
process.env['ACTIONS_RESULTS_URL'] ||
|
||||||
|
'');
|
||||||
case 'v2':
|
case 'v2':
|
||||||
return process.env['ACTIONS_RESULTS_URL'] || "";
|
return process.env['ACTIONS_RESULTS_URL'] || '';
|
||||||
default:
|
default:
|
||||||
throw new Error(`Unsupported cache service version: ${version}`);
|
throw new Error(`Unsupported cache service version: ${version}`);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue