summaryrefslogtreecommitdiffstats
path: root/ci/script.sh
diff options
context:
space:
mode:
Diffstat (limited to 'ci/script.sh')
-rw-r--r--ci/script.sh18
1 files changed, 0 insertions, 18 deletions
diff --git a/ci/script.sh b/ci/script.sh
deleted file mode 100644
index e61e155..0000000
--- a/ci/script.sh
+++ /dev/null
@@ -1,18 +0,0 @@
-# This script takes care of testing your crate
-
-set -ex
-
-main() {
- cross build --target $TARGET
-
- if [ ! -z $DISABLE_TESTS ]; then
- return
- fi
-
- cross test --target $TARGET
-}
-
-# we don't run the "test phase" when doing deploys
-if [ -z $TRAVIS_TAG ]; then
- main
-fi