Skip to content

Commit

Permalink
Improve build-test.sh for non-travis-ci usage
Browse files Browse the repository at this point in the history
  • Loading branch information
zturtleman committed Mar 7, 2013
1 parent a737d44 commit 97fc98d
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions build-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,20 @@ failed=0;
make clean
(make USE_CODEC_VORBIS=1 USE_FREETYPE=1 CFLAGS=-DRAVENMD4) || failed=1;

# Test mingw (gcc)
if [ "$CC" = "gcc" ]; then
# clear CC so script will set it.
export CC=
(exec ./cross-make-mingw.sh) || failed=1;
# Test mingw
if [ "$CC" = "clang" ]; then
# skip mingw if travis-ci clang build
echo "Skipping mingw build because there is no mingw clang compiler available.";
else
# clear CC so cross-make-mingw script will set it.
export CC=
(exec ./cross-make-mingw.sh) || failed=1;
fi

if [ $failed -eq 1 ]; then
echo "Build failure.";
echo "Build failure.";
else
echo "All builds successful.";
echo "All builds successful.";
fi

exit $failed;
Expand Down

0 comments on commit 97fc98d

Please sign in to comment.