summarylogtreecommitdiffstats
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml29
1 files changed, 29 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
new file mode 100644
index 000000000000..aa63e13f3aa1
--- /dev/null
+++ b/.gitlab-ci.yml
@@ -0,0 +1,29 @@
+include:
+ - project: "common/gitlab-helper"
+ ref: master
+ file: "ci-helper.yml"
+
+workflow: !reference [ .common, workflow ]
+
+variables:
+ PKG_NAME: "helm-diff"
+
+stages:
+ - build
+ - test
+ - deploy
+
+build-helm-diff:
+ extends: .arch-build
+ image: ${CI_REGISTRY}/common/gitlab-helper/archlinux-yay:master
+ #before_script:
+ # - git config --global --add safe.directory /builds/arch/helm-diff
+ needs: []
+
+test-helm-diff:
+ extends: .arch-test
+ image: ${CI_REGISTRY}/common/gitlab-helper/archlinux-yay:master
+ needs: ["build-helm-diff"]
+
+deploy-helm-diff:
+ extends: .arch-deploy