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 e078ab2..0000000
--- a/ci/script.sh
+++ /dev/null
@@ -1,18 +0,0 @@
-# This script takes care of testing your crate
-
-set -ex
-
-main() {
- if [ -n "$ENABLE_TESTS" ]; then
- # for now, we can only run unit-tests until it's clear why journey-test results differ on Linux
- # TODO: Test in docker, make sure we get the same results
- make unit-tests
- return
- fi
- cross build --target $TARGET
-}
-
-# we don't run the "test phase" when doing deploys
-if [ -z $TRAVIS_TAG ]; then
- main
-fi