c9abbec48a
The gtk-doc meson helper regressed in that it didn't expect the libfprint.types file to not exist, as earlier versions did. Remove the --rebuild-types call so that it is not generated, and meson carries on compiling the rest of the library. See https://gitlab.gnome.org/GNOME/gtk-doc/issues/48 See https://github.com/mesonbuild/meson/issues/3892 See https://bugzilla.redhat.com/show_bug.cgi?id=1604585
20 lines
405 B
YAML
20 lines
405 B
YAML
image: fedora:rawhide
|
|
stages:
|
|
- build
|
|
|
|
variables:
|
|
DEPENDENCIES: libusb1-devel glib2-devel nss-devel pixman-devel systemd meson gtk-doc
|
|
gcc gcc-c++ glibc-devel libX11-devel libXv-devel
|
|
|
|
|
|
before_script:
|
|
- dnf update -y --nogpgcheck && dnf install -y --nogpgcheck $DEPENDENCIES
|
|
|
|
|
|
build:
|
|
stage: build
|
|
script:
|
|
- meson . _build
|
|
- ninja -C _build
|
|
- ninja -C _build install
|
|
|