libbsd: Branch 'master'

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Thu May 31 01:27:54 UTC 2018


 .gitlab-ci.yml |   22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

New commits:
commit 005b509061dcc5d6cf9495b707be81046c1cb2c8
Author: Guillem Jover <guillem at hadrons.org>
Date:   Thu May 31 01:45:28 2018 +0200

    build: Add a gitlab CI configuration file

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
new file mode 100644
index 0000000..03afa11
--- /dev/null
+++ b/.gitlab-ci.yml
@@ -0,0 +1,22 @@
+image: debian:stretch
+
+before_script:
+  - apt update -qq
+  - apt install build-essential autoconf automake libtool
+
+stages:
+  - autogen
+  - build
+  - test
+
+autogen:
+  stage: autogen
+  script: autoreconf -f -i && ./configure
+
+build:
+  stage: build
+  script: make
+
+test:
+  stage: test
+  script: make check


More information about the libbsd mailing list