summarylogtreecommitdiffstats
path: root/.gitlab-ci.yml
blob: aa63e13f3aa19fef1d1fd0c3594980f6607b6d5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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