File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ docker push "qgis/qgis:${DOCKER_TAG}"
35
35
echo " Copy build cache from Docker container to Travis cache directory"
36
36
rm -rf " ${CCACHE_DIR:? } /" *
37
37
docker run --name qgis_container qgis/qgis:${DOCKER_TAG} /bin/true
38
- docker cp qgis_container:/usr/src/QGIS/ .ccache_image_build ${CCACHE_DIR}
38
+ docker cp qgis_container:/usr/src/.ccache_image_build ${CCACHE_DIR}
39
39
docker rm qgis_container
40
40
popd
41
41
echo " Trigger build of PyQGIS Documentation"
Original file line number Diff line number Diff line change @@ -17,7 +17,8 @@ ENV LANG=C.UTF-8
17
17
COPY . /usr/src/QGIS
18
18
19
19
# If this directory is changed, also adapt script.sh which copies the directory
20
- ENV CCACHE_DIR=/usr/src/QGIS/.ccache_image_build
20
+ RUN mkdir -p /usr/src/.ccache_image_build
21
+ ENV CCACHE_DIR=/usr/src/.ccache_image_build
21
22
RUN ccache -M 1G
22
23
RUN ccache -s
23
24
You can’t perform that action at this time.
0 commit comments