[postgis-tickets] [SCM] PostGIS branch out-of-tree-builds updated. 3.2.0-339-ge65867029

git at osgeo.org git at osgeo.org
Thu Jan 20 13:37:50 PST 2022


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, out-of-tree-builds has been updated
  discards  e9411dae787a0f7792302f091d918e950aa629de (commit)
       via  e658670293b7747e56e83a046508bc0df2598ea6 (commit)
       via  56b546a563719df6bcac6eaf3a24ff1b17049bdd (commit)
       via  49083aa0c58c356d7c8690f302b1efe9687d6ee2 (commit)
       via  0f3b5a29d1a6a72135fcd929945c5e26a12d56da (commit)
       via  8828402ccb84023294ae0e1e0292d3cb2b0841ca (commit)
       via  2424b1ed0fc63efcd07b2b98e1499035960e3a9c (commit)
       via  d2358992e0918633adf96875e5731d804638fe9c (commit)
       via  7d4178c6a24d504ef257850f0ac727515f63f039 (commit)
       via  f9ddee5779ce69f7b21845b9c8bed1fdcc95c724 (commit)
       via  426498749af42e378f7db9ea6264e8ca617d0a0b (commit)

This update added new revisions after undoing existing revisions.  That is
to say, the old revision is not a strict subset of the new revision.  This
situation occurs when you --force push a change and generate a repository
containing something like this:

 * -- * -- B -- O -- O -- O (e9411dae787a0f7792302f091d918e950aa629de)
            \
             N -- N -- N (e658670293b7747e56e83a046508bc0df2598ea6)

When this happens we assume that you've already had alert emails for all
of the O revisions, and so we here report only the revisions in the N
branch from the common base, B.

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 e658670293b7747e56e83a046508bc0df2598ea6
Author: Sandro Santilli <strk at kbt.io>
Date:   Thu Jan 20 22:37:32 2022 +0100

    [dronie] Use out-of-tree builds

diff --git a/.drone-1.0.yml b/.drone-1.0.yml
index 7e4e6f3f0..c6a198ba0 100644
--- a/.drone-1.0.yml
+++ b/.drone-1.0.yml
@@ -14,21 +14,33 @@ kind: pipeline
 name: build
 clone: *clone
 steps:
+
+  - name: autogen
+    image: *test-image
+    pull: always
+    commands:
+      - ./autogen.sh
+      - mkdir build
+    depends_on: [ clone ]
+
   - name: build-9.6
     image: *test-image
     pull: always
     commands:
       - PGVER=9.6 sh ci/dronie/postgis_regress.sh
+    depends_on: [ autogen ]
 
   - name: build-10
     image: *test-image
     pull: always
     commands:
       - PGVER=10 sh ci/dronie/postgis_regress.sh
+    depends_on: [ autogen ]
 
   - name: build-11
     image: *test-image
     pull: always
     commands:
       - PGVER=11 sh ci/dronie/postgis_regress.sh
+    depends_on: [ autogen ]
 ...
diff --git a/ci/dronie/postgis_regress.sh b/ci/dronie/postgis_regress.sh
index 39af45e5b..d27e5139e 100644
--- a/ci/dronie/postgis_regress.sh
+++ b/ci/dronie/postgis_regress.sh
@@ -7,9 +7,13 @@ service postgresql start $PGVER
 export PGPORT=`grep ^port /etc/postgresql/$PGVER/main/postgresql.conf | awk '{print $3}'`
 export PATH=/usr/lib/postgresql/$PGVER/bin:$PATH
 psql --version
-./autogen.sh
-./configure CFLAGS="-O2 -Wall -fno-omit-frame-pointer -Werror" --without-interrupt-tests
-make clean
+
+SRCDIR=$PWD
+BUILDDIR=build/$PGVER
+
+mkdir ${BUILDDIR} && cd ${BUILDDIR}
+
+../../configure CFLAGS="-O2 -Wall -fno-omit-frame-pointer -Werror" --without-interrupt-tests
 make -j
 # we should maybe wait for postgresql service to startup here...
 psql -c "select version()" template1
@@ -18,6 +22,6 @@ make install
 RUNTESTFLAGS=-v make installcheck
 
 CURRENTVERSION=`grep '^POSTGIS_' Version.config | cut -d= -f2 | paste -sd '.'`
-utils/check_all_upgrades.sh -s ${CURRENTVERSION}! | tee check.log
+${SRCDIR}/utils/check_all_upgrades.sh -s ${CURRENTVERSION}! | tee check.log
 echo "-- Summary of upgrade tests --"
 egrep '(PASS|FAIL)' check.log

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

Summary of changes:
 .drone-1.0.yml                                   | 12 +++++++
 ci/dronie/postgis_regress.sh                     | 12 ++++---
 doc/po/de/reference_accessor.xml.po              | 11 +++---
 doc/po/es/reference_accessor.xml.po              | 15 +++-----
 doc/po/fr/reference_accessor.xml.po              | 14 +++-----
 doc/po/it_IT/reference_accessor.xml.po           | 46 ++++++++++++------------
 doc/po/ja/administration.xml.po                  | 16 ++++-----
 doc/po/ja/reference_accessor.xml.po              | 11 +++---
 doc/po/ko_KR/reference_accessor.xml.po           | 11 +++---
 doc/po/pl/reference_accessor.xml.po              |  6 ++--
 doc/po/pt_BR/reference_accessor.xml.po           | 11 +++---
 doc/po/ru/administration.xml.po                  | 17 ++++-----
 doc/po/ru/reference_accessor.xml.po              |  6 ++--
 doc/po/templates/reference_accessor.xml.pot      |  6 ++--
 doc/reference_accessor.xml                       |  2 +-
 regress/core/tests.mk.in                         |  1 +
 topology/sql/topogeometry/srid.sql.in            | 10 +++---
 topology/test/regress/topogeometry_srid.sql      | 18 +++++-----
 topology/test/regress/topogeometry_srid_expected | 24 ++++---------
 topology/test/tests.mk                           | 12 ++++---
 utils/check_tests_enabled.sh                     |  1 -
 21 files changed, 122 insertions(+), 140 deletions(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list