diff options
author | David Kalnischkies <david@kalnischkies.de> | 2015-08-31 17:28:33 +0200 |
---|---|---|
committer | David Kalnischkies <david@kalnischkies.de> | 2015-08-31 17:28:33 +0200 |
commit | b2640c0afea4c3803ab46b130c960ea3029eb14d (patch) | |
tree | 1a2be5aa9bfba58cec6ece25ad5fdf3c40ee87fe /.travis.yml | |
parent | d2b7b1300c7567b4c9d9b057d5077e66a9ba18b6 (diff) |
tavis: run testcases a second time, but as root
Git-Dch: Ignore
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml index 993492b7e..8c156e49e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,11 +1,17 @@ language: cpp +sudo: required before_install: - sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y - - sudo apt-get update -q + - sudo apt-get update -qq install: - sudo ./prepare-release travis-ci - sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test - sudo apt-get -qq update - - sudo apt-get -qq install g++-4.8 - - export CXX=g++-4.8 -script: make && make test && test/integration/run-tests + - sudo apt-get -qq -y install gcc-4.8 g++-4.8 + - export CC=gcc-4.8 CXX=g++-4.8 +script: + - make + - make test + - ./test/integration/run-tests + - sudo adduser --force-badname --system --home /nonexistent --no-create-home --quiet _apt || true + - sudo ./test/integration/run-tests |