Skip to content

Commit af13431

Browse files
committed
.travis.sh: do not run eus64-check on osx, FIXME
1 parent 58c7b51 commit af13431

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.travis.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,9 @@ else
6666
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
6767
fi
6868

69-
make -C eus/contrib/eus64-check/ || exit 1 # check eus64-check
69+
if [ "$TRAVIS_OS_NAME" != "osx" ]; then
70+
make -C eus/contrib/eus64-check/ || exit 1 # check eus64-check
71+
fi
7072
travis_time_end
7173

7274
if [ "$TRAVIS_OS_NAME" == "linux" -a "`uname -m`" == "x86_64" ]; then

0 commit comments

Comments
 (0)