[postgis-tickets] [SCM] PostGIS branch stable-2.4 updated. 40b18b9fdec5fa86a5c78884b33a2d653bbe2e34
git at osgeo.org
git at osgeo.org
Sat Jun 27 10:28:31 PDT 2020
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, stable-2.4 has been updated
via 40b18b9fdec5fa86a5c78884b33a2d653bbe2e34 (commit)
from 1f3bb0e07ea453afdcac272540598e0a32088ed2 (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 40b18b9fdec5fa86a5c78884b33a2d653bbe2e34
Author: Regina Obe <lr at pcorp.us>
Date: Sat Jun 27 13:28:24 2020 -0400
cloud.drone.io to use different script from dronie.osgeo.org closes #4704 for PostGIS 2.4
diff --git a/.cloud-drone.yml b/.cloud-drone.yml
new file mode 100644
index 0000000..fcccf9a
--- /dev/null
+++ b/.cloud-drone.yml
@@ -0,0 +1,51 @@
+# This is for the drone 1.0 agent
+# https://docs.drone.io/user-guide/pipeline/steps/
+# https://cloud.drone.io/postgis #1.0 server
+
+# See https://git.osgeo.org/gitea/postgis/postgis-docker
+# todo: add docker images from https://hub.docker.com/r/postgis/postgis-build-env/tags/
+test-image: &test-image docker.osgeo.org/postgis/build-test:trisquel2
+kind: pipeline
+name: pg-9.4
+steps:
+ - name: build
+ image: *test-image
+ pull: true
+ commands:
+ - export PGVER=9.4
+ - 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="-O0 -Wall -fno-omit-frame-pointer" --without-interrupt-tests
+ - make -j
+ # we should maybe wait for postgresql service to startup here...
+ - psql -c "select version()" template1
+ - make check RUNTESTFLAGS=-v
+ - make install
+ - utils/check_all_upgrades.sh -s
+ `grep '^POSTGIS_' Version.config | cut -d= -f2 | paste -sd '.'`
+---
+test-image: &test-image docker.osgeo.org/postgis/build-test:trisquel2
+kind: pipeline
+name: pg-9.5
+steps:
+ - name: build
+ image: *test-image
+ pull: true
+ commands:
+ - export PGVER=9.5
+ - 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="-O0 -Wall -fno-omit-frame-pointer" --without-interrupt-tests
+ - make -j
+ # we should maybe wait for postgresql service to startup here...
+ - psql -c "select version()" template1
+ - make check RUNTESTFLAGS=-v
+ - make install
+ - utils/check_all_upgrades.sh -s
+ `grep '^POSTGIS_' Version.config | cut -d= -f2 | paste -sd '.'`
-----------------------------------------------------------------------
Summary of changes:
.cloud-drone.yml | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 51 insertions(+)
create mode 100644 .cloud-drone.yml
hooks/post-receive
--
PostGIS
More information about the postgis-tickets
mailing list