[postgis-tickets] [SCM] PostGIS branch main updated. 3.2.0alpha1-32-g1ffff63

git at osgeo.org git at osgeo.org
Mon Sep 27 04:56:25 PDT 2021


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, main has been updated
       via  1ffff63a65cf3bc6064de5266175fbff3ba71955 (commit)
      from  7db04adfb58750da9978ebec2d56fec6d1392913 (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 1ffff63a65cf3bc6064de5266175fbff3ba71955
Author: Sandro Santilli <strk at kbt.io>
Date:   Mon Sep 27 11:20:38 2021 +0200

    [gitlab-ci] Add 32bit testing
    
    Closes #5003

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index eb3f9b1..51f8063 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,8 +1,7 @@
-test:
-  image: debian:buster
+.build_definition: &build_definition
   except:
     - main
-  script:
+  before_script:
     - apt-get update -qq && apt-get install -y
         bison flex
         postgresql-11 postgresql-server-dev-11
@@ -12,8 +11,10 @@ test:
         libprotobuf-c1 libprotobuf-c-dev protobuf-c-compiler
     - lsb_release -a
     - uname -a
+    - echo "LONG INT is "`getconf LONG_BIT`"bit"
     - service postgresql start
     - su -l postgres -c "createuser -s `whoami`"
+  script:
     - ./autogen.sh
     - ./configure
     - make maintainer-clean
@@ -25,3 +26,11 @@ test:
     - make install
     - RUNTESTFLAGS=-v make installcheck
     - RUNTESTFLAGS="-v --dumprestore" make installcheck
+
+test:
+  image: debian:buster
+  <<: *build_definition
+
+test32:
+  image: i386/debian:buster
+  <<: *build_definition

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

Summary of changes:
 .gitlab-ci.yml | 15 ++++++++++++---
 1 file changed, 12 insertions(+), 3 deletions(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list