australis/vendor/git.apache.org/thrift.git/build/docker/scripts/cross-test.sh
2018-10-23 23:32:59 -07:00

16 lines
191 B
Bash
Executable file

#!/bin/sh
set -ev
./bootstrap.sh
./configure --enable-tutorial=no
make -j3 precross
set +e
make cross$1
RET=$?
if [ $RET -ne 0 ]; then
cat test/log/unexpected_failures.log
fi
exit $RET