blob: ba7e21e2dc151b407bc736f18db5b79a75d890e9 (
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: "cdsclient"
stages:
- containerize
- build
- test
- deploy
build-cdsclient:
extends: .arch-build
image: $CI_REGISTRY/common/gitlab-helper/archlinux-yay:master
test-cdsclient:
extends: .arch-test
needs: ["build-cdsclient"]
image: $CI_REGISTRY/common/gitlab-helper/archlinux-yay:master
deploy-cdsclient:
extends: .arch-deploy
|