pixman: Branch 'master' - 2 commits

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Tue Jun 5 16:33:52 UTC 2018


 .gitlab-ci.yml |    9 +++++++++
 contrib/ci.sh  |    6 ++++++
 2 files changed, 15 insertions(+)

New commits:
commit a75c69f12221e77904a713471141dc15ce733481
Merge: ddf42d6 9034d0c
Author: Adam Jackson <ajax at nwnk.net>
Date:   Tue Jun 5 16:33:50 2018 +0000

    Merge branch 'ci' into 'master'
    
    ci: Add .gitlab-ci.yml
    
    See merge request pixman/pixman!1

commit 9034d0cc3241c56cbe3bdbc98247a68e3529ee48
Author: Adam Jackson <ajax at redhat.com>
Date:   Thu May 31 12:32:18 2018 -0400

    ci: Add .gitlab-ci.yml
    
    Just builds on Fedora 28 for x86_64 at the moment, but it's a start.
    Credit to Daniel Stone for eliminating the nested docker image.
    
    Signed-off-by: Adam Jackson <ajax at redhat.com>

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
new file mode 100644
index 0000000..b506ca3
--- /dev/null
+++ b/.gitlab-ci.yml
@@ -0,0 +1,9 @@
+image: fedora:28
+
+job:
+    script:
+    - dnf -y install dnf-plugins-core
+    - dnf -y groupinstall buildsys-build
+    - dnf -y builddep pixman
+    - ./autogen.sh
+    - make -sj4 check
\ No newline at end of file
diff --git a/contrib/ci.sh b/contrib/ci.sh
new file mode 100755
index 0000000..48b3e77
--- /dev/null
+++ b/contrib/ci.sh
@@ -0,0 +1,6 @@
+#!/bin/sh
+
+set -ex
+
+./autogen.sh
+make -sj4 check


More information about the xorg-commit mailing list