[librest/wip/nielsdg/meson] Add CI for the librest builds



commit 6316ed2b73d687ad2be757a8b3c3730a0548c596
Author: Niels De Graef <nielsdegraef gmail com>
Date:   Wed May 8 19:17:19 2019 +0200

    Add CI for the librest builds
    
    Given that librest doesn't get a lot of attention anymore, it's useful
    to at least have this for the occasional contributor.

 .gitlab-ci.yml | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)
---
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
new file mode 100644
index 0000000..78f006e
--- /dev/null
+++ b/.gitlab-ci.yml
@@ -0,0 +1,21 @@
+image: fedora:latest
+
+stages:
+  - build
+
+build-folks:
+  stage: build
+  except:
+    - tags
+  before_script:
+    - dnf update -y --nogpgcheck
+    - dnf -y install --nogpgcheck redhat-rpm-config
+      glib2-devel gobject-introspection-devel libxml2-devel meson ninja-build
+      libsoup-devel vala
+  script:
+    - meson _build
+    - ninja -C _build
+    - meson test -C _build
+  artifacts:
+    paths:
+      - "_build/meson-logs"


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]