From ee2bff1cc42f5cd8371c10d8d9228fe1c0261023 Mon Sep 17 00:00:00 2001 From: Zac Berkowitz Date: Sat, 25 Feb 2017 02:21:41 +0000 Subject: Added ci templates from `trust` v0.1.1 --- ci/script.sh | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 ci/script.sh (limited to 'ci/script.sh') diff --git a/ci/script.sh b/ci/script.sh new file mode 100644 index 00000000..de1f77c5 --- /dev/null +++ b/ci/script.sh @@ -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 [ -n $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 -- cgit v1.2.3