Log hashes
This commit is contained in:
parent
3d5b0966f9
commit
82d9a7f35c
|
@ -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";
|
||||||
|
|
Loading…
Reference in New Issue