summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: 57a9a13572138b3e96fd5e33ca19ecfd1883aab8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
image: fedora:rawhide

variables:
  DEPENDENCIES: gettext libtool intltool gtk-doc
                autoconf automake
                gcc redhat-rpm-config gcc-c++ glibc-devel make
                systemd sqlite-devel gobject-introspection-devel
                libusbx-devel libgudev-devel libimobiledevice-devel
                glib2-devel
                umockdev python3-dbus python3-dbusmock

build_stable:
  before_script:
    - dnf update -y --nogpgcheck && dnf install -y --nogpgcheck $DEPENDENCIES
  script:
    - mkdir _build
    - cd _build
    - ../autogen.sh
    - make
    - make install
    - make check