aboutsummaryrefslogtreecommitdiff
path: root/.ci/ci.ts
diff options
context:
space:
mode:
authorElizabeth Hunt <me@liz.coffee>2025-12-06 17:18:10 -0800
committerElizabeth Hunt <me@liz.coffee>2025-12-06 17:18:10 -0800
commita24545074ee575f37f7d4d3d4058f71e04ba2fba (patch)
tree547ae0c819aba9c5153b7352952e6e3d1ead4ac1 /.ci/ci.ts
parentac01ecc9405c1e246a2b5790795eeb789708673e (diff)
downloadci-a24545074ee575f37f7d4d3d4058f71e04ba2fba.tar.gz
ci-a24545074ee575f37f7d4d3d4058f71e04ba2fba.zip
Rebuild ci
Diffstat (limited to '.ci/ci.ts')
-rw-r--r--.ci/ci.ts40
1 files changed, 20 insertions, 20 deletions
diff --git a/.ci/ci.ts b/.ci/ci.ts
index 2b54cd8..1f4b5c6 100644
--- a/.ci/ci.ts
+++ b/.ci/ci.ts
@@ -9,10 +9,10 @@ import {
} from '@emprespresso/ci_model';
import { join } from 'path';
-const REGISTRY = 'oci.liz.coffee';
+const REGISTRY = 'img.liz.coffee';
const NAMESPACE = 'emprespresso';
const IMG = 'ci';
-const REMOTE = 'ssh://src.liz.coffee:2222';
+const REMOTE = 'https://code.liz.coffee';
const getPipeline = () => {
const gitHookPipeline = new DefaultGitHookPipelineBuilder();
@@ -70,24 +70,24 @@ const getPipeline = () => {
return gitHookPipeline.build();
}
- const fetchAnsibleCode: FetchCodeJob = {
- type: 'fetch_code',
- arguments: {
- remoteUrl: `${REMOTE}/infra`,
- checkout: 'main',
- path: 'infra',
- },
- };
- const thenDeploy: AnsiblePlaybookJob = {
- type: 'ansible_playbook.js',
- arguments: {
- path: 'infra',
- playbooks: 'playbooks/ci.yml',
- },
- };
- [fetchAnsibleCode, thenDeploy].forEach((deploymentStage) =>
- gitHookPipeline.addStage({ parallelJobs: [deploymentStage] }),
- );
+// const fetchAnsibleCode: FetchCodeJob = {
+// type: 'fetch_code',
+// arguments: {
+// remoteUrl: `${REMOTE}/infra`,
+// checkout: 'main',
+// path: 'infra',
+// },
+// };
+// const thenDeploy: AnsiblePlaybookJob = {
+// type: 'ansible_playbook.js',
+// arguments: {
+// path: 'infra',
+// playbooks: 'playbooks/ci.yml',
+// },
+// };
+// [fetchAnsibleCode, thenDeploy].forEach((deploymentStage) =>
+// gitHookPipeline.addStage({ parallelJobs: [deploymentStage] }),
+// );
return gitHookPipeline.build();
};