Files
getrandom/utils/ci/script.sh
T
2019-02-25 17:16:52 +00:00

14 lines
236 B
Bash

# Derived from https://github.com/japaric/trust
set -ex
main() {
cross test --target $TARGET
cross test --target $TARGET --examples
}
# we don't run the "test phase" when doing deploys
if [ -z $TRAVIS_TAG ]; then
main
fi