[folks/wip/nielsdg/add-gitlab-ci] CI: add a GitLab CI file.



commit db6be1439c99669b90e0cb3e798d8541caa8080f
Author: Niels De Graef <nielsdegraef gmail com>
Date:   Sun May 27 13:14:34 2018 +0200

    CI: add a GitLab CI file.
    
    This allows us to check on each commit/MR/... whether everything still
    builds and all tests still pass.

 .gitlab-ci.yml | 12 ++++++++++++
 1 file changed, 12 insertions(+)
---
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
new file mode 100644
index 00000000..85cfbc34
--- /dev/null
+++ b/.gitlab-ci.yml
@@ -0,0 +1,12 @@
+stages:
+  build
+
+fedora-rawhide:
+  stage: build
+  script:
+    # Configure
+    - ./autogen.sh
+    # Build
+    - make -j
+    # Run tests
+    - make -j check


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