[postgis-tickets] [SCM] PostGIS branch master updated. 3.3.0alpha1-59-g25b4d74a7

git at osgeo.org git at osgeo.org
Wed Jun 15 12:53:55 PDT 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, master has been updated
       via  25b4d74a77ecb3e97ee4c892444c7d0d291c13fa (commit)
       via  1f67a740cbf5a692e7ac8562b09c15a077566f47 (commit)
       via  0a1bbd29aa3af6ab99ac265a59bec34a2455bb0e (commit)
       via  43496731fac4325287c18203520ad8fef4792a43 (commit)
      from  650293b850a4c4a027f8cf55ee6e937350fb6be4 (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 25b4d74a77ecb3e97ee4c892444c7d0d291c13fa
Merge: 650293b85 1f67a740c
Author: Paul Ramsey <pramsey at cleverelephant.ca>
Date:   Wed Jun 15 12:53:52 2022 -0700

    Merge branch 'lbartoletti-fix_cirrus_ci'


commit 1f67a740cbf5a692e7ac8562b09c15a077566f47
Merge: 650293b85 0a1bbd29a
Author: Paul Ramsey <pramsey at cleverelephant.ca>
Date:   Wed Jun 15 12:53:42 2022 -0700

    Merge branch 'fix_cirrus_ci' of github.com:lbartoletti/postgis into lbartoletti-fix_cirrus_ci


commit 0a1bbd29aa3af6ab99ac265a59bec34a2455bb0e
Author: Loïc Bartoletti <loic.bartoletti at oslandia.com>
Date:   Wed Jun 15 18:28:23 2022 +0200

    stop service and exit if fail

diff --git a/.cirrus.yml b/.cirrus.yml
index cf723417a..e01813803 100644
--- a/.cirrus.yml
+++ b/.cirrus.yml
@@ -19,11 +19,11 @@ task:
     - service postgresql oneinitdb
     - service postgresql onestart
     - su postgres -c "createuser -s `whoami`"
-    - gmake -j8
-    - gmake -j8 check
-    - gmake -j8 install
-    - gmake -j8 check RUNTESTFLAGS="-v --extension"
-    - gmake -j8 check RUNTESTFLAGS="-v --dumprestore"
+    - gmake -j8 || { service postgresql onestop; exit 1;}
+    - gmake -j8 check || { service postgresql onestop; exit 1;}
+    - gmake -j8 install || { service postgresql onestop; exit 1;}
+    - gmake -j8 check RUNTESTFLAGS="-v --extension" || { service postgresql onestop; exit 1;}
+    - gmake -j8 check RUNTESTFLAGS="-v --dumprestore" || { service postgresql onestop; exit 1;}
     - service postgresql onestop
 
   freebsd_instance:

commit 43496731fac4325287c18203520ad8fef4792a43
Author: Loïc Bartoletti <loic.bartoletti at oslandia.com>
Date:   Wed Jun 15 15:11:00 2022 +0200

    [CI][Cirrus] Fix and update FreeBSD CI

diff --git a/.cirrus.yml b/.cirrus.yml
index 31cb804b1..cf723417a 100644
--- a/.cirrus.yml
+++ b/.cirrus.yml
@@ -1,35 +1,42 @@
-# freebsd_instance:
-#   image: freebsd-12-2-release-amd64
-#   cpu: 8
-#   memory: 16G
+task:
+  only_if: $BRANCH != 'master'
+  name: FreeBSD
+  alias: test-freebsd
+  env:
+    MAKE_FLAGS: -j 8
 
-# task:
-#   only_if: $BRANCH != 'master'
-#   install_script:
-#     - sed -i.bak -e 's,pkg+http://pkg.FreeBSD.org/\${ABI}/quarterly,pkg+http://pkg.FreeBSD.org/\${ABI}/latest,' /etc/pkg/FreeBSD.conf
-#     - ASSUME_ALWAYS_YES=yes pkg bootstrap -f
-#     - pkg install -y bison postgresql12-server gmake libxml2 autoconf automake libtool pkgconf iconv pcre proj gdal sfcgal geos libxslt cunit protobuf-c json-c postgresql12-contrib
+  install_script:
+    - sed -i.bak -e 's,pkg+http://pkg.FreeBSD.org/\${ABI}/quarterly,pkg+http://pkg.FreeBSD.org/\${ABI}/latest,' /etc/pkg/FreeBSD.conf
+    - ASSUME_ALWAYS_YES=yes pkg bootstrap -f
+    - pkg install -y bison postgresql13-server gmake libxml2 autoconf automake libtool pkgconf iconv pcre proj gdal sfcgal geos libxslt cunit protobuf-c json-c postgresql13-contrib
+
+  patch_script:
+    # will be removed
+    - find . -name "*.pl" | xargs sed -i -r 's|/usr/bin/perl|/usr/bin/env perl|'
+  build_script:
+    - ./autogen.sh
+    - ./configure PKG_CONFIG=/usr/local/bin/pkgconf CFLAGS="-isystem /usr/local/include -Wall -fno-omit-frame-pointer -Werror" LDFLAGS="-L/usr/local/lib" --with-libiconv-prefix=/usr/local --without-gui --without-interrupt-tests --with-topology --without-raster  --with-sfcgal=/usr/local/bin/sfcgal-config --with-address-standardizer --with-protobuf
+    - service postgresql oneinitdb
+    - service postgresql onestart
+    - su postgres -c "createuser -s `whoami`"
+    - gmake -j8
+    - gmake -j8 check
+    - gmake -j8 install
+    - gmake -j8 check RUNTESTFLAGS="-v --extension"
+    - gmake -j8 check RUNTESTFLAGS="-v --dumprestore"
+    - service postgresql onestop
+
+  freebsd_instance:
+    cpu: 8
+    memory: 24g
+  matrix:
+    # - name: 14-CURRENT
+    #   freebsd_instance:
+    #     image_family: freebsd-14-0-snap
+    - name: 13.1-RELEASE
+      freebsd_instance:
+        image_family: freebsd-13-1
+    - name: 12.3-RELEASE
+      freebsd_instance:
+        image_family: freebsd-12-3
 
-#   patch_script:
-#     # will be removed
-#     - find . -name "*.pl" | xargs sed -i -r 's|/usr/bin/perl|/usr/bin/env perl|'
-#   configure_script:
-#     - ./autogen.sh
-#     - ./configure PKG_CONFIG=/usr/local/bin/pkgconf CFLAGS="-isystem /usr/local/include -Wall -fno-omit-frame-pointer -Werror" LDFLAGS="-L/usr/local/lib" --with-libiconv-prefix=/usr/local --without-gui --without-interrupt-tests --with-topology --without-raster  --with-sfcgal=/usr/local/bin/sfcgal-config --with-address-standardizer --with-protobuf
-#     - service postgresql oneinitdb
-#     - service postgresql onestart
-#     - su -l postgres -c "createuser -s `whoami`"
-#   build_script:
-#     - gmake -j8
-#   check_script:
-#     - gmake -j8 check
-#     - gmake -j8 install
-#     - gmake -j8 check RUNTESTFLAGS="-v --extension"
-#     - gmake -j8 check RUNTESTFLAGS="-v --dumprestore"
-#   matrix:
-#     - name: freebsd12-amd64
-#       freebsd_instance:
-#           image: freebsd-12-2-release-amd64
-#     - name: freebsd13-amd64
-#       freebsd_instance:
-#           image: freebsd-13-0-release-amd64

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

Summary of changes:
 .cirrus.yml | 73 +++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 40 insertions(+), 33 deletions(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list