Skip to content

Commit 71afa6f

Browse files
authored
temp fix for 12-master ( #192 ) (#194)
* travis: allow_failures for VERSION=12-master * quickfix 12-master error the original error was: `rm: cannot remove '/usr/local/lib/libSFCGAL.la': No such file or directory` probably some internal change ... travis: https://travis-ci.org/github/postgis/docker-postgis/jobs/686381262 issue: #192 * quickfix 12-master error (2) - in the remplate file * update 12-master
1 parent 0358a5b commit 71afa6f

File tree

3 files changed

+10
-8
lines changed

3 files changed

+10
-8
lines changed

.travis.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ services: docker
55
dist: xenial
66

77
env:
8-
# - VERSION=12-master
8+
- VERSION=12-master
99
- VERSION=12-3.0
1010
- VERSION=12-3.0 VARIANT=alpine
1111
- VERSION=12-2.5
@@ -27,6 +27,10 @@ env:
2727
- VERSION=9.5-2.5
2828
- VERSION=9.5-2.5 VARIANT=alpine
2929

30+
jobs:
31+
allow_failures:
32+
- env: VERSION=12-master
33+
3034
script:
3135
- if [[ "$TRAVIS_PULL_REQUEST" == "false" && "$TRAVIS_BRANCH" == "master" ]]; then
3236
echo "$DOCKERHUB_ACCESS_TOKEN" | docker login -u $DOCKERHUB_USERNAME --password-stdin &&

12-master/Dockerfile

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@ FROM postgres:12
33
LABEL maintainer="PostGIS Project - https://postgis.net"
44

55
ENV SFCGAL_VERSION master
6-
ENV SFCGAL_GIT_HASH 787e2b7eedd69d3d806432e986ac0ee51125570a
6+
ENV SFCGAL_GIT_HASH 929605c8ea85f2c01efa116e1ed0eb01d285ea09
77
ENV PROJ_VERSION master
8-
ENV PROJ_GIT_HASH b84c9d0cb61f3bd561da6092e15e294ae7e410e0
8+
ENV PROJ_GIT_HASH 0c9cf39297a24d5e56aa488820a5ba3edaace90e
99
ENV GDAL_VERSION master
10-
ENV GDAL_GIT_HASH 6c491dfffa97270d922783d69a1124dcd9be3b47
10+
ENV GDAL_GIT_HASH ab634ff99f45ef87f2d3e862a56b2289bba653d5
1111
ENV GEOS_VERSION master
12-
ENV GEOS_GIT_HASH 4e9a2550a346d2052c5018909dc77eed30117772
12+
ENV GEOS_GIT_HASH 099e74b3127348e1f8544ab279b609e2fdc6cc74
1313
ENV POSTGIS_VERSION master
14-
ENV POSTGIS_GIT_HASH 93bb425c61fbfcef9d830a10b61aa74305114efc
14+
ENV POSTGIS_GIT_HASH 4c185f8617824a21f46569170dd16c3427e1b197
1515

1616
RUN set -ex \
1717
&& apt-get update \
@@ -76,7 +76,6 @@ RUN set -ex \
7676
&& cmake .. \
7777
&& make -j$(nproc) \
7878
&& make install \
79-
&& rm /usr/local/lib/libSFCGAL.la \
8079
&& cd / \
8180
&& rm -fr /usr/src/sfcgal \
8281
# proj4

Dockerfile.master.template

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,6 @@ RUN set -ex \
7676
&& cmake .. \
7777
&& make -j$(nproc) \
7878
&& make install \
79-
&& rm /usr/local/lib/libSFCGAL.la \
8079
&& cd / \
8180
&& rm -fr /usr/src/sfcgal \
8281
# proj4

0 commit comments

Comments
 (0)