Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 24c3ae1

Browse files
committedAug 14, 2017
minor fixes
1 parent 1d3c4d9 commit 24c3ae1

File tree

3 files changed

+11
-10
lines changed

3 files changed

+11
-10
lines changed
 

‎.docker/Dockerfile-build-test

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,10 @@
22
FROM qgis/qgis3-build-deps:current_build
33
MAINTAINER Denis Rouzaud <denis.rouzaud@gmail.com>
44

5-
RUN ls /root/.ccache
65

7-
RUN echo "DDDD"
8-
RUN /root/QGIS/.ci/travis/linux/docker-build-test.sh
6+
7+
COPY . /root/QGIS
8+
9+
10+
11+
RUN /root/QGIS/.docker/docker-build-test.sh
File renamed without changes.

‎.docker/docker-compose.travis.yml

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,16 @@ services:
33
postgres:
44
image: kartoza/postgis:9.5-2.2
55
environment:
6-
- ALLOW_IP_RANGE="172.18.0.0/16"
6+
- ALLOW_IP_RANGE=172.18.0.0/16
77

88
qgis-build-and-test:
99
build:
10-
context: .
11-
dockerfile: Dockerfile-build-test
12-
args:
13-
DOCKER_TAG: ${DOCKER_TAG}
14-
tty: true
10+
context: ..
11+
dockerfile: .docker/Dockerfile-build-test
12+
# tty: true
1513
image: qgis/qgis3-run:${DOCKER_TAG}
1614
volumes:
17-
- ${TRAVIS_BUILD_DIR}:/root/QGIS
15+
- ${TRAVIS_BUILD_DIR}:/root/QGIS-host
1816
- $HOME/.ccache:/root/.ccache # if changed, also change env var
1917
links:
2018
- postgres

0 commit comments

Comments
 (0)
Please sign in to comment.