heapless/ci/script.sh
Jorge Aparicio 054f291b31 add CI
2017-10-31 17:09:35 +01:00

13 lines
210 B
Bash

set -euxo pipefail
main() {
case $TARGET in
thumb*m-none-eabi)
xargo check --target $TARGET
;;
*)
cargo check --target $TARGET
;;
esac
}