summarylogtreecommitdiffstats
path: root/.gitlab-ci.yml
blob: 51e9581bca2c153a7e45883d650c7c84a546af8c (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-sextractor"

stages:
- build
- test
- deploy

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

deploy-astromatic-sextractor:
  extends: .arch-deploy