From b2e52408f7f5d0bb8d6623521f04bbd6c1694947 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Fri, 29 Apr 2016 22:52:44 +0200 Subject: [PATCH] travis: Switch to autobuilt Docker images Since Archlinux switched to PyQt 5.6, we can now use the autobuilt image without a handbuilt PyQt. This means we have an up-to-date image with each build again. --- scripts/dev/ci/travis_run.sh | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/scripts/dev/ci/travis_run.sh b/scripts/dev/ci/travis_run.sh index 6e4539d26..79900a058 100644 --- a/scripts/dev/ci/travis_run.sh +++ b/scripts/dev/ci/travis_run.sh @@ -1,12 +1,8 @@ #!/bin/bash if [[ $DOCKER ]]; then - # To build a fresh image: - # docker build -t img misc/docker/$DOCKER - # docker run --privileged -v $PWD:/outside img - docker run --privileged -v $PWD:/outside \ - thecompiler/qutebrowser-manual:$DOCKER + thecompiler/qutebrowser:$DOCKER else args=() [[ $TESTENV == docs ]] && args=('--no-authors')