From 6a4220458c1ea7bdbea9a94045ba57476780b46e Mon Sep 17 00:00:00 2001 From: Dan Robertson <danlrobertson89@gmail.com> Date: Sun, 8 Apr 2018 13:52:34 +0000 Subject: [PATCH] ci: Ensure that the correct compiler is installed Ensure that a compiler is installed when the aarch64 CI build is run. --- .travis.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.travis.yml b/.travis.yml index f1cded3b1..481719f9d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,6 +5,8 @@ env: - TARGET=x86_64-unknown-redox rust: - nightly +install: + - if [ $TARGET == "aarch64-unknown-linux-gnu" ]; then sudo apt-get install gcc-aarch64-linux-gnu; fi before_script: - rustup component add rustfmt-preview - if [ -n "$TARGET" ]; then rustup target add $TARGET; fi -- GitLab