From 33b4d35f046831edfd4cd380fa4fd5b25362f615 Mon Sep 17 00:00:00 2001 From: Dan Duvall Date: Wed, 4 May 2022 10:24:33 -0700 Subject: [PATCH] ci: Provide basic `.pipeline/config.yaml` Migrate away from deprecated service-pipeline-test and service-pipeline-test-and-publish jobs in favor of bespoke PipelineLib based pipelines. See https://wikitech.wikimedia.org/wiki/PipelineLib/Guides/How_to_configure_CI_for_your_project Bug: T307507 Change-Id: I097559149ff92e85e35d1bec8673cc81226e9416 --- .pipeline/config.yaml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .pipeline/config.yaml diff --git a/.pipeline/config.yaml b/.pipeline/config.yaml new file mode 100644 index 00000000..025fb054 --- /dev/null +++ b/.pipeline/config.yaml @@ -0,0 +1,17 @@ +pipelines: + test: + blubberfile: blubber.yaml + stages: + - name: test + build: test + run: true + publish: + blubberfile: blubber.yaml + stages: + - name: test + build: test + run: true + - name: publish + build: production + publish: + image: true