From c545306c62bcce4d813a8364ffbe82509a79f9e9 Mon Sep 17 00:00:00 2001 From: Radon Rosborough Date: Sat, 10 Jul 2021 23:05:27 +0000 Subject: [PATCH] Optimize CI --- tools/ci-run.bash | 2 +- tools/depgraph.js | 4 +--- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/tools/ci-run.bash b/tools/ci-run.bash index 5cd4b5b..8658ebb 100755 --- a/tools/ci-run.bash +++ b/tools/ci-run.bash @@ -3,4 +3,4 @@ set -euo pipefail make ecr system -make env CMD="dep deploy:live --publish --all --yes" Z=xz CI=1 TEST_PATIENCE=4 TEST_CONCURRENCY=1 +make env CMD="dep deploy:live --publish --yes" Z=xz CI=1 TEST_PATIENCE=4 TEST_CONCURRENCY=1 diff --git a/tools/depgraph.js b/tools/depgraph.js index de099b7..cb6e655 100644 --- a/tools/depgraph.js +++ b/tools/depgraph.js @@ -266,9 +266,7 @@ async function getDeployReadyArtifact(langs) { async function getDeployLiveArtifact(langs) { return { name: `deploy:live`, - dependencies: ["image:app"] - .concat(langs.map((lang) => `image:lang-${lang}`)) - .concat(langs.map((lang) => `test:lang-${lang}`)), + dependencies: ["deploy:ready"], publishTarget: true, publishToRegistry: async () => { await runCommand(`make deploy`);