summaryrefslogtreecommitdiffstats
path: root/ci/script.sh
diff options
context:
space:
mode:
authorSebastian Thiel <sebastian.thiel@icloud.com>2020-05-21 12:48:39 +0800
committerSebastian Thiel <sebastian.thiel@icloud.com>2020-05-21 12:48:39 +0800
commitbb406748e2b7e6cc047ebb4f9262c2f5d51f8dbb (patch)
treef33991d8270d6e3acd9ff5b72e6c980299be2421 /ci/script.sh
parentf0f20af237d7acddf4de3ae13673f44617728cf4 (diff)
remove unused files
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