[postgis-tickets] [SCM] PostGIS branch master updated. 3.3.0rc2-623-ga6b5cc348

git at osgeo.org git at osgeo.org
Thu Feb 16 08:47:17 PST 2023


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "PostGIS".

The branch, master has been updated
       via  a6b5cc34825e0a701b14dca9d0abb5fb65804354 (commit)
      from  f7885e500686145b098a633356a70b49bfb1c1eb (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit a6b5cc34825e0a701b14dca9d0abb5fb65804354
Author: Sandro Santilli <strk at kbt.io>
Date:   Thu Feb 16 17:44:09 2023 +0100

    Restore gitlab testing

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
new file mode 100644
index 000000000..690762ee9
--- /dev/null
+++ b/.gitlab-ci.yml
@@ -0,0 +1,42 @@
+.build_definition: &build_definition
+  except:
+    - main
+  before_script:
+    - apt-get update -qq && apt-get install -y
+        bison flex
+        postgresql-14 postgresql-server-dev-14
+        build-essential autoconf libtool libcunit1-dev
+        xsltproc docbook-xsl docbook-mathml dblatex
+        libproj-dev libgdal-dev libgeos-dev libjson-c-dev
+        libprotobuf-c1 libprotobuf-c-dev protobuf-c-compiler
+    - lsb_release -a
+    - uname -a
+    - service postgresql start
+    - su -l postgres -c "createuser -s `whoami`"
+  script:
+    - ./autogen.sh
+    - ./configure
+    - make maintainer-clean
+    - ./autogen.sh
+    - chattr -R +i . # mark source tree as immutable
+    - export SRCDIR="${PWD}"
+    - echo "SRCDIR is ${SRCDIR}"
+    - mkdir /tmp/build && cd /tmp/build
+    - echo "Build dir is ${PWD}"
+    - ${SRCDIR}/configure --without-raster CFLAGS="-Wall -fno-omit-frame-pointer -Werror"
+    - make
+    - RUNTESTFLAGS=-v make check
+    - RUNTESTFLAGS="-v --dumprestore" make check-regress
+    - make install
+    - RUNTESTFLAGS=-v make installcheck
+    - RUNTESTFLAGS="-v --dumprestore" make installcheck
+    - make distclean
+    - ${SRCDIR}/utils/check_distclean.sh
+
+test:
+  image: debian:bookworm
+  <<: *build_definition
+
+test32:
+  image: i386/debian:bookworm
+  <<: *build_definition

-----------------------------------------------------------------------

Summary of changes:
 .gitlab-ci.yml | 42 ++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 42 insertions(+)
 create mode 100644 .gitlab-ci.yml


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list