mirror of
https://github.com/rust-embedded/heapless.git
synced 2025-09-28 04:50:34 +00:00
12 lines
176 B
Bash
12 lines
176 B
Bash
set -euxo pipefail
|
|
|
|
main() {
|
|
if [ $TARGET != x86_64-unknown-linux-gnu ]; then
|
|
rustup target add $TARGET
|
|
fi
|
|
}
|
|
|
|
if [ $TRAVIS_BRANCH != master ]; then
|
|
main
|
|
fi
|