[postgis-tickets] [SCM] PostGIS branch stable-3.0 updated. 3.0.2-5-gd405770

git at osgeo.org git at osgeo.org
Fri Aug 21 06:19:21 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-3.0 has been updated
       via  d4057706afab0d9cb54448bb05152e33b855c4eb (commit)
      from  11846bd1f7bf5df07b6919d0ebba0aacc45d82f1 (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 d4057706afab0d9cb54448bb05152e33b855c4eb
Author: Raúl Marín <git at rmr.ninja>
Date:   Tue Aug 18 15:22:15 2020 +0200

    Travis: Use the latest Docker
    
    I updated the images with the latest PG minor releases and
    Travis is having issues running them. With this we make sure
    it's running the latest stable release of Docker
    
    Also, update clang reference to clang 9 (for the ASAN build)

diff --git a/.travis.yml b/.travis.yml
index dff4442..725d230 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -30,6 +30,12 @@ matrix:
         - pip install flake8  # lint Python code for syntax errors
         - flake8 . --count --select=E9,F63,F72,F82 --show-source --statistics
 
+before_install:
+  - curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
+  - sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
+  - sudo apt-get update
+  - sudo apt-get -y -o Dpkg::Options::="--force-confnew" install docker-ce
+
 script:
   - echo "/tmp/logbt-coredumps/core.%p.%E" | sudo tee /proc/sys/kernel/core_pattern
   - echo "FROM postgis/postgis-build-env:${tag}" > Dockerfile
diff --git a/ci/travis/run_usan_clang.sh b/ci/travis/run_usan_clang.sh
index a3126ac..515176f 100644
--- a/ci/travis/run_usan_clang.sh
+++ b/ci/travis/run_usan_clang.sh
@@ -10,7 +10,7 @@ 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/8/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 -l /tmp/logfile start
 
 
 # Build with Clang and usan flags

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

Summary of changes:
 .travis.yml                 | 6 ++++++
 ci/travis/run_usan_clang.sh | 2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list