Skip to content

Commit

Permalink
ci: Ensure that the correct compiler is installed
Browse files Browse the repository at this point in the history
Ensure that a compiler is installed when the aarch64 CI build is run.
  • Loading branch information
dlrobertson committed Apr 8, 2018
1 parent 722732b commit 6a42204
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .travis.yml
Expand Up @@ -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
Expand Down

0 comments on commit 6a42204

Please sign in to comment.