Optimize CI

This commit is contained in:
Radon Rosborough 2021-07-10 23:05:27 +00:00
parent db1e288166
commit c545306c62
2 changed files with 2 additions and 4 deletions

View File

@ -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

View File

@ -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`);