blob: cf4a5c2f2486797bf0abf221878b8e711b57b816 (
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
|
include:
- project: "common/gitlab-helper"
ref: master
file: "ci-helper.yml"
workflow: !reference [ .common, workflow ]
variables:
PKG_NAME: "astromatic-missfits"
stages:
- build
- test
- deploy
build-astromatic-missfits:
extends: .arch-build
image: $CI_REGISTRY/common/gitlab-helper/archlinux-yay:master
test-astromatic-missfits:
extends: .arch-test
needs: ["build-astromatic-missfits"]
image: $CI_REGISTRY/common/gitlab-helper/archlinux-yay:master
deploy-astromatic-missfits:
extends: .arch-deploy
|