Skip to content

Commit

Permalink
.travis.sh: do not run eus64-check on osx, FIXME
Browse files Browse the repository at this point in the history
  • Loading branch information
k-okada committed Jan 8, 2017
1 parent 58c7b51 commit af13431
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .travis.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit af13431

Please sign in to comment.