diff options
| author | Elizabeth Hunt <me@liz.coffee> | 2025-12-06 17:18:10 -0800 |
|---|---|---|
| committer | Elizabeth Hunt <me@liz.coffee> | 2025-12-06 17:18:10 -0800 |
| commit | a24545074ee575f37f7d4d3d4058f71e04ba2fba (patch) | |
| tree | 547ae0c819aba9c5153b7352952e6e3d1ead4ac1 /.ci/ci.ts | |
| parent | ac01ecc9405c1e246a2b5790795eeb789708673e (diff) | |
| download | ci-a24545074ee575f37f7d4d3d4058f71e04ba2fba.tar.gz ci-a24545074ee575f37f7d4d3d4058f71e04ba2fba.zip | |
Rebuild ci
Diffstat (limited to '.ci/ci.ts')
| -rw-r--r-- | .ci/ci.ts | 40 |
1 files changed, 20 insertions, 20 deletions
@@ -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(); }; |
