[postgis-tickets] [SCM] PostGIS branch master updated. 3.1.0alpha2-117-g5770ad5

git at osgeo.org git at osgeo.org
Fri Oct 30 05:09:56 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, master has been updated
       via  5770ad5b141ffaf31dcc06226ef948741ce829c5 (commit)
      from  5d6bc59868f6c15237e76377c7b91b7b154f12c6 (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 5770ad5b141ffaf31dcc06226ef948741ce829c5
Author: Sandro Santilli <strk at kbt.io>
Date:   Fri Oct 30 13:09:32 2020 +0100

    Disable fsync when starting PG cluster for testing purpose
    
    Should save some time

diff --git a/ci/berrie/pg_init_start.sh b/ci/berrie/pg_init_start.sh
index d38d85b..6bc4a8e 100644
--- a/ci/berrie/pg_init_start.sh
+++ b/ci/berrie/pg_init_start.sh
@@ -13,7 +13,7 @@ export PGPORT=55432
 export PGDATA=$PGPATH/data_${PGPORT}
 export PGLOG="$PGDATA/pgsql.log"
 # What to use to start up the postmaster
-DAEMON="$PGPATH/bin/pg_ctl -D $PGDATA -l logfile start"
+DAEMON="$PGPATH/bin/pg_ctl -D $PGDATA -o "-F" -l logfile start"
 
 # What to use to shut down the postmaster
 PGCTL="$PGPATH/bin/pg_ctl"
diff --git a/ci/berrie64/pg_init_start.sh b/ci/berrie64/pg_init_start.sh
index 6959641..9c86bda 100644
--- a/ci/berrie64/pg_init_start.sh
+++ b/ci/berrie64/pg_init_start.sh
@@ -11,7 +11,7 @@ export PGPORT=55432
 export PGDATA=$PGPATH/data_${PGPORT}
 export PGLOG="$PGDATA/pgsql.log"
 # What to use to start up the postmaster
-DAEMON="$PGPATH/bin/pg_ctl -D $PGDATA -l logfile start"
+DAEMON="$PGPATH/bin/pg_ctl -D $PGDATA -o '-F' -l logfile start"
 
 # What to use to shut down the postmaster
 PGCTL="$PGPATH/bin/pg_ctl"
diff --git a/ci/dronie/postgis_regress_alpine.sh b/ci/dronie/postgis_regress_alpine.sh
index 9e75823..dad522a 100644
--- a/ci/dronie/postgis_regress_alpine.sh
+++ b/ci/dronie/postgis_regress_alpine.sh
@@ -3,7 +3,7 @@
 # Exit on first error
 set -e
 
-su - postgres -c "export PGDATA=/var/lib/postgresql/data && pg_ctl -l /var/lib/postgresql/data/pg.log start"
+su - postgres -c "export PGDATA=/var/lib/postgresql/data && pg_ctl -l -o '-F' /var/lib/postgresql/data/pg.log start"
 #export PGPORT=`grep ^port /var/lib/postgresql/postgresql.conf | awk '{print $3}'`
 export PGPORT=5432
 psql --version
diff --git a/ci/travis/run_coverage.sh b/ci/travis/run_coverage.sh
index 70b473c..13bd7e0 100644
--- a/ci/travis/run_coverage.sh
+++ b/ci/travis/run_coverage.sh
@@ -5,7 +5,7 @@ set -e
 CFLAGS_COV="-g -O0 --coverage"
 LDFLAGS_COV="--coverage"
 
-/usr/local/pgsql/bin/pg_ctl -c -l /tmp/logfile start
+/usr/local/pgsql/bin/pg_ctl -c -l /tmp/logfile -o '-F' start
 ./autogen.sh
 ./configure CFLAGS="${CFLAGS_COV}" LDFLAGS="${LDFLAGS_COV}" --enable-debug
 make -j check
diff --git a/ci/travis/run_garden.sh b/ci/travis/run_garden.sh
index 33b5627..e922b58 100644
--- a/ci/travis/run_garden.sh
+++ b/ci/travis/run_garden.sh
@@ -5,7 +5,7 @@ set -e
 CFLAGS_STD="-g -O0 -mtune=generic -fno-omit-frame-pointer --coverage"
 LDFLAGS_STD="--coverage"
 
-/usr/local/pgsql/bin/pg_ctl -c -l /tmp/logfile start
+/usr/local/pgsql/bin/pg_ctl -c -l /tmp/logfile -o '-F' start
 ./autogen.sh
 ./configure CFLAGS="${CFLAGS_STD}" LDFLAGS="${LDFLAGS_STD}" --enable-debug
 make -j
diff --git a/ci/travis/run_nowagyu.sh b/ci/travis/run_nowagyu.sh
index 830cfb5..160afae 100644
--- a/ci/travis/run_nowagyu.sh
+++ b/ci/travis/run_nowagyu.sh
@@ -8,7 +8,7 @@ WARNINGS_DISABLED="-Wno-unused-parameter -Wno-implicit-fallthrough -Wno-cast-fun
 CFLAGS="-g -O0 --coverage -mtune=generic -fno-omit-frame-pointer ${WARNINGS} ${WARNINGS_DISABLED}"
 LDFLAGS="--coverage"
 
-/usr/local/pgsql/bin/pg_ctl -c -l /tmp/logfile start
+/usr/local/pgsql/bin/pg_ctl -c -l /tmp/logfile -o '-F' start
 ./autogen.sh
 
 # Standard build
diff --git a/ci/travis/run_tests.sh b/ci/travis/run_tests.sh
index e4d5fae..bad7a77 100644
--- a/ci/travis/run_tests.sh
+++ b/ci/travis/run_tests.sh
@@ -11,7 +11,7 @@ LDFLAGS_STD="-Wl,-Bsymbolic-functions -Wl,-z,relro"
 export CUNIT_WITH_VALGRIND=YES
 export CUNIT_VALGRIND_FLAGS="--leak-check=full --error-exitcode=1"
 
-/usr/local/pgsql/bin/pg_ctl -c -l /tmp/logfile start
+/usr/local/pgsql/bin/pg_ctl -c -l /tmp/logfile -o '-F' start
 ./autogen.sh
 
 # Standard build
diff --git a/ci/travis/run_usan_clang.sh b/ci/travis/run_usan_clang.sh
index 515176f..3357345 100644
--- a/ci/travis/run_usan_clang.sh
+++ b/ci/travis/run_usan_clang.sh
@@ -10,7 +10,8 @@ export ASAN_OPTIONS=halt_on_error=false,leak_check_at_exit=false,exitcode=0
 export MSAN_OPTIONS=halt_on_error=false,leak_check_at_exit=false,exitcode=0
 
 #Run postgres preloading sanitizer libs
-LD_PRELOAD=/usr/lib/clang/9/lib/linux/libclang_rt.asan-x86_64.so /usr/local/pgsql/bin/pg_ctl -c -l /tmp/logfile start
+LD_PRELOAD=/usr/lib/clang/9/lib/linux/libclang_rt.asan-x86_64.so \
+/usr/local/pgsql/bin/pg_ctl -c -o '-F' -l /tmp/logfile start
 
 
 # Build with Clang and usan flags
diff --git a/ci/travis/run_usan_gcc.sh b/ci/travis/run_usan_gcc.sh
index 8943dd7..333cb3c 100644
--- a/ci/travis/run_usan_gcc.sh
+++ b/ci/travis/run_usan_gcc.sh
@@ -5,7 +5,7 @@ set -e
 CFLAGS_STD="-g3 -O0 -mtune=generic -fno-omit-frame-pointer -fsanitize=undefined -fsanitize-undefined-trap-on-error"
 LDFLAGS_STD="-Wl,-Bsymbolic-functions -Wl,-z,relro"
 
-/usr/local/pgsql/bin/pg_ctl -c -l /tmp/logfile start
+/usr/local/pgsql/bin/pg_ctl -c -l /tmp/logfile -o '-F' start
 ./autogen.sh
 
 # Build with GCC and usan flags

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

Summary of changes:
 ci/berrie/pg_init_start.sh          | 2 +-
 ci/berrie64/pg_init_start.sh        | 2 +-
 ci/dronie/postgis_regress_alpine.sh | 2 +-
 ci/travis/run_coverage.sh           | 2 +-
 ci/travis/run_garden.sh             | 2 +-
 ci/travis/run_nowagyu.sh            | 2 +-
 ci/travis/run_tests.sh              | 2 +-
 ci/travis/run_usan_clang.sh         | 3 ++-
 ci/travis/run_usan_gcc.sh           | 2 +-
 9 files changed, 10 insertions(+), 9 deletions(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list