1
0
mirror of https://github.com/alrayyes/st synced 2023-11-14 15:56:30 +00:00
st/.gitlab-ci.yml
2019-06-14 17:03:43 +00:00

33 lines
741 B
YAML

stages:
- check_pkgbuild
- build_package
- install_package
- check_package
check_pkgbuild:
image: ${CI_REGISTRY}/personal/homelab/docker/arch-pkg-build:latest
stage: check_pkgbuild
script:
- namcap PKGBUILD > PKGBUILD.namcap.out
artifacts:
paths:
- PKGBUILD.namcap.out
build_package:
image: ${CI_REGISTRY}/personal/homelab/docker/arch-pkg-build:latest
stage: build_package
script:
- makepkg --syncdeps --noconfirm --log --check
artifacts:
paths:
- "*.log"
- "*.pkg.tar.xz"
check_package:
image: ${CI_REGISTRY}/personal/homelab/docker/arch-pkg-build:latest
stage: check_package
script:
- namcap *.pkg.tar.xz > PKG.namcap.out
artifacts:
paths:
- PKG.namcap.out