diff options
author | 2017-05-30 12:13:14 -0500 | |
---|---|---|
committer | 2017-05-30 12:13:14 -0500 | |
commit | a899f3b5e2f1c18d9b449154f5eb97e288d221ba (patch) | |
tree | cd9dcecb35964ad9653ace6c84debce5e0543a83 | |
parent | d5eb639f417fdfb92c29d7c86a589cb6728072f6 (diff) | |
download | cortex-m-a899f3b5e2f1c18d9b449154f5eb97e288d221ba.tar.gz cortex-m-a899f3b5e2f1c18d9b449154f5eb97e288d221ba.tar.zst cortex-m-a899f3b5e2f1c18d9b449154f5eb97e288d221ba.zip |
add rust-src component
-rw-r--r-- | ci/install.sh | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/ci/install.sh b/ci/install.sh index 561e9c2..5a7aabf 100644 --- a/ci/install.sh +++ b/ci/install.sh @@ -1,7 +1,12 @@ set -ex main() { - cargo install xargo || true + case $TARGET in + thumbv*-none-eabi*) + cargo install xargo || true + rustup component add rust-src || true + ;; + esac } # NOTE(TRAVIS_BRANCH) Travis is configured to only build *pushes* (not PRs) |