aboutsummaryrefslogtreecommitdiffstats
path: root/.gitlab-ci.yml
blob: e2393f8d43a7967bc6c348622ba2988d4ebdf4c7 (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
stages:
  - build

.builddep_dnf: &builddep_dnf
  - dnf install -y 'dnf-command(builddep)'
  - dnf builddep -y *.spec

.build_meson: &build_meson
  - mkdir build-meson
  - meson . build-meson
  - ninja-build -C build-meson 

build_fedora:
  stage: build
  image: fedora:latest
  script:
    - *builddep_dnf
    - *build_meson

build_centos8:
  stage: build
  image: centos:8
  script:
    - *builddep_dnf
    - *build_meson