ioq3/travis-ci-build.sh

31 lines
488 B
Bash
Raw Normal View History

#!/bin/sh
failed=0;
# check if testing mingw
2013-03-12 22:18:55 +00:00
if [ "$CC" = "i686-w64-mingw32-gcc" ]; then
export PLATFORM=mingw32
2013-03-22 14:05:50 +00:00
export ARCH=x86
2013-03-22 14:47:37 +00:00
export CC=
haveExternalLibs=0
else
haveExternalLibs=1
fi
# Default Build
(make clean release) || failed=1;
# Test additional options
if [ $haveExternalLibs -eq 1 ]; then
(make clean release USE_CODEC_VORBIS=1 USE_FREETYPE=1) || failed=1;
fi
if [ $failed -eq 1 ]; then
echo "Build failure.";
else
echo "All builds successful.";
fi
exit $failed;