blob: 04362a559b1fd70d036b0545bb4ea48f5ab0df87 (
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
30
|
include:
- project: "common/gitlab-helper"
ref: master
file: "ci-helper.yml"
workflow: !reference [ .common, workflow ]
variables:
PKG_NAME: "klepto"
stages:
- build
- test
- deploy
build-klepto:
before_script:
- sudo pacman -Syu --noconfirm
- git config --global --add safe.directory /builds/arch/klepto
extends: .arch-build
image: ${CI_REGISTRY}/common/gitlab-helper/archlinux-yay:master
needs: []
test-klepto:
extends: .arch-test
image: ${CI_REGISTRY}/common/gitlab-helper/archlinux-yay:master
needs: ["build-klepto"]
deploy-klepto:
extends: .arch-deploy
|