|
|
@ -59888,21 +59888,11 @@ const cachePackages = (packageManager) => __awaiter(void 0, void 0, void 0, func
|
|
|
|
core.info(`Cache hit occurred on the primary key ${primaryKey}, not saving cache.`);
|
|
|
|
core.info(`Cache hit occurred on the primary key ${primaryKey}, not saving cache.`);
|
|
|
|
return;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
try {
|
|
|
|
const cacheId = yield cache.saveCache([cachePath], primaryKey);
|
|
|
|
yield cache.saveCache([cachePath], primaryKey);
|
|
|
|
if (cacheId == -1) {
|
|
|
|
core.info(`Cache saved with the key: ${primaryKey}`);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
catch (error) {
|
|
|
|
|
|
|
|
if (error.name === cache.ValidationError.name) {
|
|
|
|
|
|
|
|
throw error;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
else if (error.name === cache.ReserveCacheError.name) {
|
|
|
|
|
|
|
|
core.info(error.message);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
else {
|
|
|
|
|
|
|
|
core.warning(`${error.message}`);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
core.info(`Cache saved with the key: ${primaryKey}`);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
run();
|
|
|
|
run();
|
|
|
|
|
|
|
|
|
|
|
|