si5351/ci/script.sh
Ilya Epifanov b371feac05 Set up ci
2018-03-02 01:29:43 +01:00

17 lines
271 B
Bash

# This script takes care of testing your crate
set -euxo pipefail
main() {
case $TARGET in
x86_64-unknown-linux-gnu)
cargo check --target $TARGET
;;
*)
xargo check --target $TARGET
;;
esac
}
main