ci: disable make on release builds

make is no longer required for distcheck, so stop doing 2 full tree builds
on this build type

fixes release builds on travis

Differential Revision: https://phab.enlightenment.org/D6611
This commit is contained in:
Mike Blumenkrantz 2018-07-12 19:21:15 -04:00 committed by Stefan Schmidt
parent 1fd8af2364
commit 0d750f7f58
1 changed files with 4 additions and 0 deletions

View File

@ -2,6 +2,10 @@
set -e
if [ "$1" = "release-ready" ] ; then
exit 0
fi
if [ "$DISTRO" != "" ] ; then
docker exec --env MAKEFLAGS="-j5" --env EIO_MONITOR_POLL=1 $(cat $HOME/cid) make
else