Add gitlab-ci.yml file

Start basic, with a single stage that builds for Fedora.
This commit is contained in:
Niels De Graef
2021-03-17 00:50:06 +01:00
parent 7eafc23017
commit 9023171166

18
.gitlab-ci.yml Normal file
View File

@@ -0,0 +1,18 @@
stages:
- build
build-fedora:
image: fedora:latest
stage: build
except:
- tags
before_script:
- dnf update -y --nogpgcheck
- dnf -y install --nogpgcheck
gawk gettext-devel glib2-devel gobject-introspection-devel gtk-doc perl
texinfo texinfo-tex
script:
- ./autogen.sh --disable-dependency-tracking
- make
- make install
- make distcheck