summaryrefslogtreecommitdiff
path: root/.ci/ci.ts
diff options
context:
space:
mode:
authorElizabeth Hunt <me@liz.coffee>2025-07-26 15:15:56 -0700
committerElizabeth Hunt <me@liz.coffee>2025-07-26 15:16:09 -0700
commit8a0c5f5cae2d6cdc66315172d7ffdffc8954ffaa (patch)
treeaaf3c74620ede2c0beab6d5a0576848d038721ff /.ci/ci.ts
parentb1efe258974f93616c98485f2bcfb8b999f0e4ad (diff)
downloadci-8a0c5f5cae2d6cdc66315172d7ffdffc8954ffaa.tar.gz
ci-8a0c5f5cae2d6cdc66315172d7ffdffc8954ffaa.zip
Uses correct subpackage for server in ci and streams stdout and stderr during ci builds
Diffstat (limited to '.ci/ci.ts')
-rw-r--r--.ci/ci.ts3
1 files changed, 2 insertions, 1 deletions
diff --git a/.ci/ci.ts b/.ci/ci.ts
index e2e375b..f634b21 100644
--- a/.ci/ci.ts
+++ b/.ci/ci.ts
@@ -5,6 +5,7 @@ import {
BuildDockerImageJob,
DefaultGitHookPipelineBuilder,
FetchCodeJob,
+ Job,
} from '@emprespresso/ci_model';
const REGISTRY = 'oci.liz.coffee';
@@ -37,7 +38,7 @@ const getPipeline = () => {
parallelJobs: [baseCiPackageBuild],
});
- const subPackages = ['worker', 'hooks'].map((_package) => ({
+ const subPackages = ['worker', 'server'].map((_package) => (<Job>{
type: 'build_docker_image.js',
arguments: {
...commonBuildArgs,