From: Sandro Santilli Date: Mon, 16 Nov 2015 11:59:54 +0000 (+0000) Subject: Add gitlab-ci configuration X-Git-Tag: 2.3.0beta1~380 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fd7f770984f4eb9a2caff8ea1fdb0d359d7f6364;p=postgis Add gitlab-ci configuration git-svn-id: http://svn.osgeo.org/postgis/trunk@14387 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 000000000..d37969b2d --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,18 @@ +test: + script: + - apt-get update -qq + - apt-get install -y + postgresql-9.4 postgresql-server-dev-9.4 + build-essential autoconf libtool libcunit1-dev + xsltproc docbook-xsl docbook-mathml dblatex + libproj-dev libgdal-dev libgeos-dev libjson0-dev + - lsb_release -a + - uname -a + - service postgresql start + - su -l postgres -c "createuser -s `whoami`" + - ./autogen.sh + - ./configure + - make + - make check RUNTESTFLAGS=-v + - make install + - make installcheck