]> granicus.if.org Git - postgis/commitdiff
Add gitlab-ci configuration
authorSandro Santilli <strk@keybit.net>
Mon, 16 Nov 2015 11:59:54 +0000 (11:59 +0000)
committerSandro Santilli <strk@keybit.net>
Mon, 16 Nov 2015 11:59:54 +0000 (11:59 +0000)
git-svn-id: http://svn.osgeo.org/postgis/trunk@14387 b70326c6-7e19-0410-871a-916f4a2858ee

.gitlab-ci.yml [new file with mode: 0644]

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
new file mode 100644 (file)
index 0000000..d37969b
--- /dev/null
@@ -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