File tree Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Original file line number Diff line number Diff line change 14
14
# #
15
15
# ##########################################################################
16
16
17
+ if [[ ${INSTALL_LIBSECCOMP} =~ ^TRUE$ ]]; then
18
+ # When building QGIS with Qt 5.10+ in a Docker container, statx calls are required on the host
19
+ # see https://bugs.launchpad.net/ubuntu/+source/docker.io/+bug/1755250
20
+ # this is required on Xenial (currently most recent distribution on Travis), but sould not on Bionic+
21
+ wget https://launchpad.net/ubuntu/+archive/primary/+files/libseccomp2_2.4.1-0ubuntu0.16.04.2_amd64.deb
22
+ sudo dpkg -i libseccomp2_2.4.1-0ubuntu0.16.04.2_amd64.deb
23
+ sudo apt-get install -f
24
+ fi
Original file line number Diff line number Diff line change @@ -125,6 +125,7 @@ matrix:
125
125
- TRIGGER_PYQGIS_DOC=TRUE
126
126
- DOCKER_TAG="$( echo $TRAVIS_BRANCH | sed 's/master/latest/' )_disco"
127
127
- DOCKER_BUILD_DEPS_FILE=qgis3-build-deps-disco.dockerfile
128
+ - INSTALL_LIBSECCOMP=TRUE
128
129
129
130
130
131
You can’t perform that action at this time.
0 commit comments