summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: 24d7354b74ea4d46f70d10030eff8ef5652ddb08 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
image: registry.fedoraproject.org/fedora:latest

variables:
  DEPENDENCIES: meson ninja-build gettext
  GIT_DEPTH: "5"

build:
  before_script:
    - dnf update -y --nogpgcheck && dnf install -y --nogpgcheck $DEPENDENCIES
  script:
    - meson _build
    - ninja -C _build
    - DESTDIR="$(pwd)/destdir" ninja -C _build install