be nicer to travis OS X machines, remove unneeded 'make clean'

This commit is contained in:
Brent Cook 2015-01-31 22:35:52 -06:00
parent 100625e317
commit fc7ba46906

View File

@ -5,8 +5,13 @@ set -e
if [ "x$ARCH" = "xnative" ]; then if [ "x$ARCH" = "xnative" ]; then
./configure --enable-libtls ./configure --enable-libtls
make clean if [ `uname` = "Darwin" ]; then
# OS X runs out of resources if we run 'make -j check'
make -j
make check
else
make -j distcheck make -j distcheck
fi
else else
CPU=i686 CPU=i686
if [ "x$ARCH" = "xmingw64" ]; then if [ "x$ARCH" = "xmingw64" ]; then
@ -25,6 +30,5 @@ else
fi fi
./configure --host=$CPU-w64-mingw32 --enable-libtls ./configure --host=$CPU-w64-mingw32 --enable-libtls
make clean
make -j make -j
fi fi