[gnome-shell-extensions/wip/fmuellner/ci: 6/6] ci: Add initial gitlab continuous integration



commit f3a7326504af85ff21c672492c5fc0faa11cf3a3
Author: Florian Müllner <fmuellner gnome org>
Date:   Fri Dec 1 00:14:41 2017 +0100

    ci: Add initial gitlab continuous integration
    
    Continuous integration is good, in particular when used before
    merging a change to master as allowed by gitlab. And now that
    we enabled some basic syntax checking of source files, we even
    have something useful to test for ...
    
    Fixes https://gitlab.gnome.org/GNOME/gnome-shell-extensions/issues/32

 .gitlab-ci.yml | 13 +++++++++++++
 1 file changed, 13 insertions(+)
---
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
new file mode 100644
index 0000000..8907580
--- /dev/null
+++ b/.gitlab-ci.yml
@@ -0,0 +1,13 @@
+image: fedora:rawhide
+
+stages:
+ - build
+
+before_script:
+  - dnf install -y meson gettext itstool gjs-devel desktop-file-utils
+
+build-shell-extensions:
+  stage: build
+  script:
+    - meson _build .
+    - ninja -C _build test install


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