die/.ci/build.sh

17 lines
236 B
Bash
Raw Normal View History

2020-11-23 16:38:56 -05:00
#!/bin/bash
set -exo pipefail
echo "starting build for TARGET $TARGET"
DISABLE_TESTS=${DISABLE_TESTS:-0}
cross build --target $TARGET
if [ $DISABLE_TESTS -ne 1 ]
then
cross test --target $TARGET
fi
echo 'build success!'
exit 0