mirror of https://github.com/actions/cache.git
Remove unnecessary debug information
This commit is contained in:
parent
4f3aee898d
commit
2eef6f331a
|
@ -12943,7 +12943,7 @@ function saveCachev2(paths, key, options, enableCrossOsArchive = false) {
|
||||||
if (!response.ok) {
|
if (!response.ok) {
|
||||||
throw new ReserveCacheError(`Unable to reserve cache with key ${key}, another job may be creating this cache.`);
|
throw new ReserveCacheError(`Unable to reserve cache with key ${key}, another job may be creating this cache.`);
|
||||||
}
|
}
|
||||||
core.debug(`Saving Cache to: ${core.setSecret(response.signedUploadUrl)}`);
|
core.debug(`Attempting to upload cache located at: ${archivePath}`);
|
||||||
yield (0, upload_cache_1.UploadCacheFile)(response.signedUploadUrl, archivePath);
|
yield (0, upload_cache_1.UploadCacheFile)(response.signedUploadUrl, archivePath);
|
||||||
const finalizeRequest = {
|
const finalizeRequest = {
|
||||||
workflowRunBackendId: backendIds.workflowRunBackendId,
|
workflowRunBackendId: backendIds.workflowRunBackendId,
|
||||||
|
@ -12953,7 +12953,7 @@ function saveCachev2(paths, key, options, enableCrossOsArchive = false) {
|
||||||
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: ${finalizeResponse.ok}`);
|
||||||
if (!finalizeResponse.ok) {
|
if (!finalizeResponse.ok) {
|
||||||
throw new Error(`Unable to finalize cache with key ${key}, another job may be finalizing this cache.`);
|
throw new Error(`Unable to finalize cache with key ${key}, another job may be finalizing this cache.`);
|
||||||
}
|
}
|
||||||
|
@ -14733,11 +14733,9 @@ function DownloadCacheFile(signedUploadURL, archivePath) {
|
||||||
const downloadOptions = {
|
const downloadOptions = {
|
||||||
maxRetryRequests: 5
|
maxRetryRequests: 5
|
||||||
};
|
};
|
||||||
// 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);
|
||||||
const blockBlobClient = blobClient.getBlockBlobClient();
|
const blockBlobClient = blobClient.getBlockBlobClient();
|
||||||
core.debug(`BlobClient: ${JSON.stringify(blobClient)}`);
|
core.debug(`BlobClient: ${blobClient.name}:${blobClient.accountName}:${blobClient.containerName}`);
|
||||||
core.debug(`blockBlobClient: ${JSON.stringify(blockBlobClient)}`);
|
|
||||||
return blockBlobClient.downloadToFile(archivePath, 0, undefined, downloadOptions);
|
return blockBlobClient.downloadToFile(archivePath, 0, undefined, downloadOptions);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -14789,7 +14787,6 @@ const core = __importStar(__nccwpck_require__(4850));
|
||||||
const storage_blob_1 = __nccwpck_require__(3864);
|
const storage_blob_1 = __nccwpck_require__(3864);
|
||||||
function UploadCacheFile(signedUploadURL, archivePath) {
|
function UploadCacheFile(signedUploadURL, archivePath) {
|
||||||
return __awaiter(this, void 0, void 0, function* () {
|
return __awaiter(this, void 0, void 0, function* () {
|
||||||
// TODO: tighten the configuration and pass the appropriate user-agent
|
|
||||||
// Specify data transfer options
|
// Specify data transfer options
|
||||||
const uploadOptions = {
|
const uploadOptions = {
|
||||||
blockSize: 4 * 1024 * 1024,
|
blockSize: 4 * 1024 * 1024,
|
||||||
|
@ -14798,8 +14795,7 @@ function UploadCacheFile(signedUploadURL, archivePath) {
|
||||||
};
|
};
|
||||||
const blobClient = new storage_blob_1.BlobClient(signedUploadURL);
|
const blobClient = new storage_blob_1.BlobClient(signedUploadURL);
|
||||||
const blockBlobClient = blobClient.getBlockBlobClient();
|
const blockBlobClient = blobClient.getBlockBlobClient();
|
||||||
core.debug(`BlobClient: ${JSON.stringify(blobClient)}`);
|
core.debug(`BlobClient: ${blobClient.name}:${blobClient.accountName}:${blobClient.containerName}`);
|
||||||
core.debug(`blockBlobClient: ${JSON.stringify(blockBlobClient)}`);
|
|
||||||
return blockBlobClient.uploadFile(archivePath, uploadOptions);
|
return blockBlobClient.uploadFile(archivePath, uploadOptions);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
|
@ -12943,7 +12943,7 @@ function saveCachev2(paths, key, options, enableCrossOsArchive = false) {
|
||||||
if (!response.ok) {
|
if (!response.ok) {
|
||||||
throw new ReserveCacheError(`Unable to reserve cache with key ${key}, another job may be creating this cache.`);
|
throw new ReserveCacheError(`Unable to reserve cache with key ${key}, another job may be creating this cache.`);
|
||||||
}
|
}
|
||||||
core.debug(`Saving Cache to: ${core.setSecret(response.signedUploadUrl)}`);
|
core.debug(`Attempting to upload cache located at: ${archivePath}`);
|
||||||
yield (0, upload_cache_1.UploadCacheFile)(response.signedUploadUrl, archivePath);
|
yield (0, upload_cache_1.UploadCacheFile)(response.signedUploadUrl, archivePath);
|
||||||
const finalizeRequest = {
|
const finalizeRequest = {
|
||||||
workflowRunBackendId: backendIds.workflowRunBackendId,
|
workflowRunBackendId: backendIds.workflowRunBackendId,
|
||||||
|
@ -12953,7 +12953,7 @@ function saveCachev2(paths, key, options, enableCrossOsArchive = false) {
|
||||||
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: ${finalizeResponse.ok}`);
|
||||||
if (!finalizeResponse.ok) {
|
if (!finalizeResponse.ok) {
|
||||||
throw new Error(`Unable to finalize cache with key ${key}, another job may be finalizing this cache.`);
|
throw new Error(`Unable to finalize cache with key ${key}, another job may be finalizing this cache.`);
|
||||||
}
|
}
|
||||||
|
@ -14733,11 +14733,9 @@ function DownloadCacheFile(signedUploadURL, archivePath) {
|
||||||
const downloadOptions = {
|
const downloadOptions = {
|
||||||
maxRetryRequests: 5
|
maxRetryRequests: 5
|
||||||
};
|
};
|
||||||
// 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);
|
||||||
const blockBlobClient = blobClient.getBlockBlobClient();
|
const blockBlobClient = blobClient.getBlockBlobClient();
|
||||||
core.debug(`BlobClient: ${JSON.stringify(blobClient)}`);
|
core.debug(`BlobClient: ${blobClient.name}:${blobClient.accountName}:${blobClient.containerName}`);
|
||||||
core.debug(`blockBlobClient: ${JSON.stringify(blockBlobClient)}`);
|
|
||||||
return blockBlobClient.downloadToFile(archivePath, 0, undefined, downloadOptions);
|
return blockBlobClient.downloadToFile(archivePath, 0, undefined, downloadOptions);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -14789,7 +14787,6 @@ const core = __importStar(__nccwpck_require__(4850));
|
||||||
const storage_blob_1 = __nccwpck_require__(3864);
|
const storage_blob_1 = __nccwpck_require__(3864);
|
||||||
function UploadCacheFile(signedUploadURL, archivePath) {
|
function UploadCacheFile(signedUploadURL, archivePath) {
|
||||||
return __awaiter(this, void 0, void 0, function* () {
|
return __awaiter(this, void 0, void 0, function* () {
|
||||||
// TODO: tighten the configuration and pass the appropriate user-agent
|
|
||||||
// Specify data transfer options
|
// Specify data transfer options
|
||||||
const uploadOptions = {
|
const uploadOptions = {
|
||||||
blockSize: 4 * 1024 * 1024,
|
blockSize: 4 * 1024 * 1024,
|
||||||
|
@ -14798,8 +14795,7 @@ function UploadCacheFile(signedUploadURL, archivePath) {
|
||||||
};
|
};
|
||||||
const blobClient = new storage_blob_1.BlobClient(signedUploadURL);
|
const blobClient = new storage_blob_1.BlobClient(signedUploadURL);
|
||||||
const blockBlobClient = blobClient.getBlockBlobClient();
|
const blockBlobClient = blobClient.getBlockBlobClient();
|
||||||
core.debug(`BlobClient: ${JSON.stringify(blobClient)}`);
|
core.debug(`BlobClient: ${blobClient.name}:${blobClient.accountName}:${blobClient.containerName}`);
|
||||||
core.debug(`blockBlobClient: ${JSON.stringify(blockBlobClient)}`);
|
|
||||||
return blockBlobClient.uploadFile(archivePath, uploadOptions);
|
return blockBlobClient.uploadFile(archivePath, uploadOptions);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
|
@ -12943,7 +12943,7 @@ function saveCachev2(paths, key, options, enableCrossOsArchive = false) {
|
||||||
if (!response.ok) {
|
if (!response.ok) {
|
||||||
throw new ReserveCacheError(`Unable to reserve cache with key ${key}, another job may be creating this cache.`);
|
throw new ReserveCacheError(`Unable to reserve cache with key ${key}, another job may be creating this cache.`);
|
||||||
}
|
}
|
||||||
core.debug(`Saving Cache to: ${core.setSecret(response.signedUploadUrl)}`);
|
core.debug(`Attempting to upload cache located at: ${archivePath}`);
|
||||||
yield (0, upload_cache_1.UploadCacheFile)(response.signedUploadUrl, archivePath);
|
yield (0, upload_cache_1.UploadCacheFile)(response.signedUploadUrl, archivePath);
|
||||||
const finalizeRequest = {
|
const finalizeRequest = {
|
||||||
workflowRunBackendId: backendIds.workflowRunBackendId,
|
workflowRunBackendId: backendIds.workflowRunBackendId,
|
||||||
|
@ -12953,7 +12953,7 @@ function saveCachev2(paths, key, options, enableCrossOsArchive = false) {
|
||||||
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: ${finalizeResponse.ok}`);
|
||||||
if (!finalizeResponse.ok) {
|
if (!finalizeResponse.ok) {
|
||||||
throw new Error(`Unable to finalize cache with key ${key}, another job may be finalizing this cache.`);
|
throw new Error(`Unable to finalize cache with key ${key}, another job may be finalizing this cache.`);
|
||||||
}
|
}
|
||||||
|
@ -14733,11 +14733,9 @@ function DownloadCacheFile(signedUploadURL, archivePath) {
|
||||||
const downloadOptions = {
|
const downloadOptions = {
|
||||||
maxRetryRequests: 5
|
maxRetryRequests: 5
|
||||||
};
|
};
|
||||||
// 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);
|
||||||
const blockBlobClient = blobClient.getBlockBlobClient();
|
const blockBlobClient = blobClient.getBlockBlobClient();
|
||||||
core.debug(`BlobClient: ${JSON.stringify(blobClient)}`);
|
core.debug(`BlobClient: ${blobClient.name}:${blobClient.accountName}:${blobClient.containerName}`);
|
||||||
core.debug(`blockBlobClient: ${JSON.stringify(blockBlobClient)}`);
|
|
||||||
return blockBlobClient.downloadToFile(archivePath, 0, undefined, downloadOptions);
|
return blockBlobClient.downloadToFile(archivePath, 0, undefined, downloadOptions);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -14789,7 +14787,6 @@ const core = __importStar(__nccwpck_require__(4850));
|
||||||
const storage_blob_1 = __nccwpck_require__(3864);
|
const storage_blob_1 = __nccwpck_require__(3864);
|
||||||
function UploadCacheFile(signedUploadURL, archivePath) {
|
function UploadCacheFile(signedUploadURL, archivePath) {
|
||||||
return __awaiter(this, void 0, void 0, function* () {
|
return __awaiter(this, void 0, void 0, function* () {
|
||||||
// TODO: tighten the configuration and pass the appropriate user-agent
|
|
||||||
// Specify data transfer options
|
// Specify data transfer options
|
||||||
const uploadOptions = {
|
const uploadOptions = {
|
||||||
blockSize: 4 * 1024 * 1024,
|
blockSize: 4 * 1024 * 1024,
|
||||||
|
@ -14798,8 +14795,7 @@ function UploadCacheFile(signedUploadURL, archivePath) {
|
||||||
};
|
};
|
||||||
const blobClient = new storage_blob_1.BlobClient(signedUploadURL);
|
const blobClient = new storage_blob_1.BlobClient(signedUploadURL);
|
||||||
const blockBlobClient = blobClient.getBlockBlobClient();
|
const blockBlobClient = blobClient.getBlockBlobClient();
|
||||||
core.debug(`BlobClient: ${JSON.stringify(blobClient)}`);
|
core.debug(`BlobClient: ${blobClient.name}:${blobClient.accountName}:${blobClient.containerName}`);
|
||||||
core.debug(`blockBlobClient: ${JSON.stringify(blockBlobClient)}`);
|
|
||||||
return blockBlobClient.uploadFile(archivePath, uploadOptions);
|
return blockBlobClient.uploadFile(archivePath, uploadOptions);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
|
@ -12943,7 +12943,7 @@ function saveCachev2(paths, key, options, enableCrossOsArchive = false) {
|
||||||
if (!response.ok) {
|
if (!response.ok) {
|
||||||
throw new ReserveCacheError(`Unable to reserve cache with key ${key}, another job may be creating this cache.`);
|
throw new ReserveCacheError(`Unable to reserve cache with key ${key}, another job may be creating this cache.`);
|
||||||
}
|
}
|
||||||
core.debug(`Saving Cache to: ${core.setSecret(response.signedUploadUrl)}`);
|
core.debug(`Attempting to upload cache located at: ${archivePath}`);
|
||||||
yield (0, upload_cache_1.UploadCacheFile)(response.signedUploadUrl, archivePath);
|
yield (0, upload_cache_1.UploadCacheFile)(response.signedUploadUrl, archivePath);
|
||||||
const finalizeRequest = {
|
const finalizeRequest = {
|
||||||
workflowRunBackendId: backendIds.workflowRunBackendId,
|
workflowRunBackendId: backendIds.workflowRunBackendId,
|
||||||
|
@ -12953,7 +12953,7 @@ function saveCachev2(paths, key, options, enableCrossOsArchive = false) {
|
||||||
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: ${finalizeResponse.ok}`);
|
||||||
if (!finalizeResponse.ok) {
|
if (!finalizeResponse.ok) {
|
||||||
throw new Error(`Unable to finalize cache with key ${key}, another job may be finalizing this cache.`);
|
throw new Error(`Unable to finalize cache with key ${key}, another job may be finalizing this cache.`);
|
||||||
}
|
}
|
||||||
|
@ -14733,11 +14733,9 @@ function DownloadCacheFile(signedUploadURL, archivePath) {
|
||||||
const downloadOptions = {
|
const downloadOptions = {
|
||||||
maxRetryRequests: 5
|
maxRetryRequests: 5
|
||||||
};
|
};
|
||||||
// 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);
|
||||||
const blockBlobClient = blobClient.getBlockBlobClient();
|
const blockBlobClient = blobClient.getBlockBlobClient();
|
||||||
core.debug(`BlobClient: ${JSON.stringify(blobClient)}`);
|
core.debug(`BlobClient: ${blobClient.name}:${blobClient.accountName}:${blobClient.containerName}`);
|
||||||
core.debug(`blockBlobClient: ${JSON.stringify(blockBlobClient)}`);
|
|
||||||
return blockBlobClient.downloadToFile(archivePath, 0, undefined, downloadOptions);
|
return blockBlobClient.downloadToFile(archivePath, 0, undefined, downloadOptions);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -14789,7 +14787,6 @@ const core = __importStar(__nccwpck_require__(4850));
|
||||||
const storage_blob_1 = __nccwpck_require__(3864);
|
const storage_blob_1 = __nccwpck_require__(3864);
|
||||||
function UploadCacheFile(signedUploadURL, archivePath) {
|
function UploadCacheFile(signedUploadURL, archivePath) {
|
||||||
return __awaiter(this, void 0, void 0, function* () {
|
return __awaiter(this, void 0, void 0, function* () {
|
||||||
// TODO: tighten the configuration and pass the appropriate user-agent
|
|
||||||
// Specify data transfer options
|
// Specify data transfer options
|
||||||
const uploadOptions = {
|
const uploadOptions = {
|
||||||
blockSize: 4 * 1024 * 1024,
|
blockSize: 4 * 1024 * 1024,
|
||||||
|
@ -14798,8 +14795,7 @@ function UploadCacheFile(signedUploadURL, archivePath) {
|
||||||
};
|
};
|
||||||
const blobClient = new storage_blob_1.BlobClient(signedUploadURL);
|
const blobClient = new storage_blob_1.BlobClient(signedUploadURL);
|
||||||
const blockBlobClient = blobClient.getBlockBlobClient();
|
const blockBlobClient = blobClient.getBlockBlobClient();
|
||||||
core.debug(`BlobClient: ${JSON.stringify(blobClient)}`);
|
core.debug(`BlobClient: ${blobClient.name}:${blobClient.accountName}:${blobClient.containerName}`);
|
||||||
core.debug(`blockBlobClient: ${JSON.stringify(blockBlobClient)}`);
|
|
||||||
return blockBlobClient.uploadFile(archivePath, uploadOptions);
|
return blockBlobClient.uploadFile(archivePath, uploadOptions);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue