Skip to content
This repository has been archived by the owner on Feb 12, 2023. It is now read-only.

Commit

Permalink
fix(ci): fix travis' window build in debian docker by upgrading libse…
Browse files Browse the repository at this point in the history
…ccomp2

seccomp is used by the docker host, and the default version shipped with
Ubuntu 16.04 does not support syscalls used by Qt5's configure inside the
docker container. Upgrading libseccomp2 resolves this issue.

Fix #5874
  • Loading branch information
anthonybilinski committed Oct 13, 2019
1 parent 16de5f8 commit 93c9eef
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .travis/build-windows.sh
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,11 @@ ls -lbh "$CACHE_DIR"
# Purely for debugging
ls -lbh "$PWD"

sudo apt-get update -qq
# even though we're building in docker, libseccomp2 is used by docker, and needs to be up to date
# to support functionality used by Qt's configure
sudo apt-get install libseccomp2 -y --force-yes

# Build
sudo docker run --rm \
-v "$PWD/workspace":/workspace \
Expand Down

0 comments on commit 93c9eef

Please sign in to comment.