From d8fa45a65350e59e579d82f9829f48ec407a5013 Mon Sep 17 00:00:00 2001 From: Jorge Aparicio Date: Fri, 30 Sep 2016 20:08:29 -0500 Subject: [PATCH] add back the mysterious apt-get install qemu-user-static --- .travis.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.travis.yml b/.travis.yml index 7b3efe4..e8931af 100644 --- a/.travis.yml +++ b/.travis.yml @@ -46,6 +46,8 @@ install: script: - cargo generate-lockfile - if [[ $TRAVIS_OS_NAME = "linux" ]]; then + sudo apt-get remove -y qemu-user-static && + sudo apt-get install -y qemu-user-static && sh ci/run-docker.sh $TARGET; else cargo test --target $TARGET &&