Hi, gitlab now allows mirroring projects so I've setup a mirror of nettle at gitlab main server: https://gitlab.com/gnutls/nettle
This has the advantage of using gnutls' CI servers. For that I attach the file needed to be present to enable using these servers. On every commit nettle will be tested for building + make check, in the available platforms and a mail will be sent to the author/committer. An example run can be seen at: https://gitlab.com/gnutls/nettle/builds?scope=finished regards, Nikos
From 696d04dd78d199d545a6f366f26d86d0320b92e6 Mon Sep 17 00:00:00 2001 From: Nikos Mavrogiannopoulos <[email protected]> Date: Sun, 20 Dec 2015 20:39:14 +0200 Subject: [PATCH] Added .gitlab-ci.yml to enable CI in gitlab mirror --- .gitlab-ci.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..816cf74 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,16 @@ +Build and Check (x86-64): + script: + - git submodule update --init && autoreconf -fvi && + ./configure --disable-documentation && make -j4 && make check -j4 + tags: + - x86-64 + except: + - tags +Build and Check (x86): + script: + - git submodule update --init && autoreconf -fvi && + ./configure --disable-documentation && make -j4 && make check -j4 + tags: + - x86 + except: + - tags -- 2.5.0
_______________________________________________ nettle-bugs mailing list [email protected] http://lists.lysator.liu.se/mailman/listinfo/nettle-bugs
