From af134318472a27101bd2ad97a4e79f55b893c963 Mon Sep 17 00:00:00 2001 From: Kei Okada Date: Sun, 8 Jan 2017 11:21:53 +0900 Subject: [PATCH] .travis.sh: do not run eus64-check on osx, FIXME --- .travis.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.travis.sh b/.travis.sh index cd9e17b6c..f87439d4b 100755 --- a/.travis.sh +++ b/.travis.sh @@ -66,7 +66,9 @@ else export EXIT_STATUS=0; for test_l in irteus/test/*.l; do irteusgl $test_l; export EXIT_STATUS=`expr $? + $EXIT_STATUS`; done;echo "Exit status : $EXIT_STATUS"; [ $EXIT_STATUS == 0 ] || exit 1 fi -make -C eus/contrib/eus64-check/ || exit 1 # check eus64-check +if [ "$TRAVIS_OS_NAME" != "osx" ]; then + make -C eus/contrib/eus64-check/ || exit 1 # check eus64-check +fi travis_time_end if [ "$TRAVIS_OS_NAME" == "linux" -a "`uname -m`" == "x86_64" ]; then