Log hashes

This commit is contained in:
plondon 2021-10-23 10:46:29 -04:00
parent 3d5b0966f9
commit 82d9a7f35c
1 changed files with 1 additions and 1 deletions

View File

@ -324,7 +324,6 @@ async function getDepGraph() {
artifacts.push(await getImageArtifact({ tag: "app" })); artifacts.push(await getImageArtifact({ tag: "app" }));
artifacts.push(await getDeployReadyArtifact(langs)); artifacts.push(await getDeployReadyArtifact(langs));
artifacts.push(await getDeployLiveArtifact(langs)); artifacts.push(await getDeployLiveArtifact(langs));
console.log(artifacts)
return { informationalDependencies, artifacts }; return { informationalDependencies, artifacts };
} }
@ -493,6 +492,7 @@ async function executeDepGraph({
}) })
); );
const statuses = {}; const statuses = {};
console.log('HASHES', hashes)
for (const name in artifacts) { for (const name in artifacts) {
if (!hashes.desired[name]) { if (!hashes.desired[name]) {
statuses[name] = "buildLocally"; statuses[name] = "buildLocally";