summaryrefslogtreecommitdiffstats
path: root/.gitlab-ci.yml
blob: 390d46cd84bd792bba6a2e5c5a3c83e87057fdbe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
stages:
- test

variables:
  DEPENDENCIES:
    gcc
    redhat-rpm-config
    meson
    glib2-devel
    gobject-introspection-devel

build-fedora:
  image: fedora:latest
  stage: test
  before_script:
    - dnf install -y $DEPENDENCIES
  script:
    - meson _build
    - ninja -C _build install