summarylogtreecommitdiffstats
path: root/.gitlab-ci.yml
blob: c5a98515da50b787f96a69cd5273e5c953b9c245 (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
include:
- project: "common/gitlab-helper"
  ref: master
  file: "ci-helper.yml"

workflow: !reference [ .common, workflow ]

variables:
  PKG_NAME: "helmify"

stages:
- build
- test
- deploy

build-helmify:
  extends: .arch-build
  image: ${CI_REGISTRY}/common/gitlab-helper/archlinux-yay:master
  needs: [ ]

test-helmify:
  extends: .arch-test
  image: ${CI_REGISTRY}/common/gitlab-helper/archlinux-yay:master
  needs: [ "build-helmify" ]

deploy-helmify:
  extends: .arch-deploy