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

stages:
  - build
  - test
  - deploy

build-plplot:
  extends: .arch-buildx
  image: ${CI_REGISTRY}/common/gitlab-helper/archlinux-yay:master
  needs: []
  
test-plplot:
  extends: .arch-test
  image: ${CI_REGISTRY}/common/gitlab-helper/archlinux-yay:master
  needs: ["build-plplot"]

deploy-plplot:
  extends: .arch-deploy