travis build file

no idea if this will work
This commit is contained in:
bootandy
2018-03-19 12:15:01 -04:00
parent ea0d9eba02
commit 32b653fe41
7 changed files with 287 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
# This script takes care of testing your crate
set -ex
# TODO This is the "test phase", tweak it as you see fit
main() {
cross build --target $TARGET
cross build --target $TARGET --release
if [ ! -z $DISABLE_TESTS ]; then
return
fi
cross test --target $TARGET
cross test --target $TARGET --release
cross run --target $TARGET
cross run --target $TARGET --release
}
# we don't run the "test phase" when doing deploys
if [ -z $TRAVIS_TAG ]; then
main
fi