chore(travis): add beta testing to travis-ci

This commit is contained in:
Sean McArthur
2015-04-27 18:44:37 -07:00
parent 29c8dd1b20
commit f01cecbc06
2 changed files with 24 additions and 6 deletions

12
.travis.sh Executable file
View File

@@ -0,0 +1,12 @@
#!/bin/sh
if [ "$BENCH" != "" ]
then
echo "cargo bench $FEATURES"
cargo bench $FEATURES
else
echo "cargo build $FEATURES"
cargo build $FEATURES
echo "cargo test $FEATURES"
cargo test $FEATURES
fi