Skip to content

Commit

Permalink
* Added BUILD STATUS section for UNREAL GAMS
Browse files Browse the repository at this point in the history
  • Loading branch information
jredmondson committed Apr 5, 2019
1 parent f45a272 commit 39ef920
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions scripts/linux/base_build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,8 @@ CAPNP_REPO_RESULT=0
CAPNP_BUILD_RESULT=0
UNREAL_BUILD_RESULT=0
AIRSIM_BUILD_RESULT=0
UNREAL_GAMS_REPO_RESULT=0
UNREAL_GAMS_BUILD_RESULT=0

STRIP_EXE=strip
VREP_INSTALLER="V-REP_PRO_EDU_V3_4_0_Linux.tar.gz"
Expand Down Expand Up @@ -923,6 +925,7 @@ if [ $UNREAL_GAMS -eq 1 ] ; then

./generate.sh
./build.sh
UNREAL_GAMS_BUILD_RESULT=$?

else
echo "NOT CHECKING UNREAL GAMS"
Expand Down Expand Up @@ -1585,6 +1588,22 @@ if [ $GAMS -eq 1 ] || [ $GAMS_AS_A_PREREQ -eq 1 ]; then
fi
fi

if [ $UNREAL_GAMS -eq 1 ] ; then
echo " UNREAL GAMS"
if [ $UNREAL_GAMS_REPO_RESULT -eq 0 ]; then
echo -e " REPO=\e[92mPASS\e[39m"
else
echo -e " REPO=\e[91mFAIL\e[39m"
(( BUILD_ERRORS++ ))
fi
if [ $UNREAL_GAMS_BUILD_RESULT -eq 0 ]; then
echo -e " BUILD=\e[92mPASS\e[39m"
else
echo -e " BUILD=\e[91mFAIL\e[39m"
(( BUILD_ERRORS++ ))
fi
fi

echo -e ""
echo -e "Saving environment variables into \$HOME/.gams/env.sh"

Expand Down

0 comments on commit 39ef920

Please sign in to comment.