mirror of
https://github.com/apache/nuttx.git
synced 2025-01-13 13:18:50 +08:00
testbuild:Added -x to fail build on errors for CI
On CI we want to know ASAP of a failure. This adds the -x (exit on build failures) option to faclitate that behavior. Use ${MAKE} ${MAKE_FLAGS} for make invocation. When -x is provided change MAKE_FLAGS to --silent --no-print-directory and set -e Ignore exit status when using grep for checking for CONFIG_NXWM=y
This commit is contained in:
parent
4504ca7c82
commit
48fb789cf3
1 changed files with 17 additions and 10 deletions
|
@ -43,6 +43,8 @@ wenv=cygwin
|
|||
sizet=uint
|
||||
APPSDIR=../apps
|
||||
NXWDIR=../NxWidgets
|
||||
MAKE_FLAGS=-i
|
||||
MAKE=make
|
||||
unset testfile
|
||||
|
||||
function showusage {
|
||||
|
@ -58,6 +60,7 @@ function showusage {
|
|||
echo " -a <appsdir> provides the relative path to the apps/ directory. Default ../apps"
|
||||
echo " -n <nxdir> provides the relative path to the NxWidgets/ directory. Default ../NxWidgets"
|
||||
echo " -d enables script debug output"
|
||||
echo " -x exit on build failures"
|
||||
echo " -h will show this help test and terminate"
|
||||
echo " <testlist-file> selects the list of configurations to test. No default"
|
||||
echo ""
|
||||
|
@ -96,6 +99,10 @@ while [ ! -z "$1" ]; do
|
|||
host=windows
|
||||
sizet=long
|
||||
;;
|
||||
-x )
|
||||
MAKE_FLAGS='--silent --no-print-directory'
|
||||
set -e
|
||||
;;
|
||||
-a )
|
||||
shift
|
||||
APPSDIR="$1"
|
||||
|
@ -142,7 +149,7 @@ function distclean {
|
|||
cd $nuttx || { echo "ERROR: failed to CD to $nuttx"; exit 1; }
|
||||
if [ -f .config ]; then
|
||||
echo " Cleaning..."
|
||||
make distclean 1>/dev/null
|
||||
${MAKE} ${MAKE_FLAGS} distclean 1>/dev/null
|
||||
fi
|
||||
}
|
||||
|
||||
|
@ -225,7 +232,7 @@ function configure {
|
|||
|
||||
echo " Refreshing..."
|
||||
cd $nuttx || { echo "ERROR: failed to CD to $nuttx"; exit 1; }
|
||||
make olddefconfig 1>/dev/null 2>&1
|
||||
${MAKE} ${MAKE_FLAGS} olddefconfig 1>/dev/null 2>&1
|
||||
}
|
||||
|
||||
# Build the NxWidgets libraries
|
||||
|
@ -237,7 +244,7 @@ function nxbuild {
|
|||
|
||||
unset nxconfig
|
||||
if [ -d $NXWDIR ]; then
|
||||
nxconfig=`grep CONFIG_NXWM=y $nuttx/.config`
|
||||
nxconfig=`grep CONFIG_NXWM=y $nuttx/.config` || true
|
||||
fi
|
||||
|
||||
if [ ! -z "$nxconfig" ]; then
|
||||
|
@ -247,18 +254,18 @@ function nxbuild {
|
|||
cd $nuttx/$NXTOOLS || { echo "Failed to CD to $NXTOOLS"; exit 1; }
|
||||
./install.sh $nuttx/$APPSDIR nxwm 1>/dev/null
|
||||
|
||||
make -C $nuttx/$APPSDIR/external TOPDIR=$nuttx APPDIR=$nuttx/$APPSDIR TOPDIR=$nuttx clean 1>/dev/null
|
||||
${MAKE} ${MAKE_FLAGS} -C $nuttx/$APPSDIR/external TOPDIR=$nuttx APPDIR=$nuttx/$APPSDIR TOPDIR=$nuttx clean 1>/dev/null
|
||||
|
||||
cd $nuttx || { echo "Failed to CD to $nuttx"; exit 1; }
|
||||
make -i context 1>/dev/null
|
||||
${MAKE} ${MAKE_FLAGS} context 1>/dev/null
|
||||
|
||||
cd $nuttx/$NXWIDGETSDIR || { echo "Failed to CD to $NXWIDGETSDIR"; exit 1; }
|
||||
make -i TOPDIR=$nuttx clean 1>/dev/null
|
||||
make -i TOPDIR=$nuttx 1>/dev/null
|
||||
${MAKE} ${MAKE_FLAGS} TOPDIR=$nuttx clean 1>/dev/null
|
||||
${MAKE} ${MAKE_FLAGS} TOPDIR=$nuttx 1>/dev/null
|
||||
|
||||
cd $nuttx/$NXWMDIR || { echo "Failed to CD to $NXWMDIR"; exit 1; }
|
||||
make -i TOPDIR=$nuttx clean 1>/dev/null
|
||||
make -i TOPDIR=$nuttx 1>/dev/null
|
||||
${MAKE} ${MAKE_FLAGS} TOPDIR=$nuttx clean 1>/dev/null
|
||||
${MAKE} ${MAKE_FLAGS} TOPDIR=$nuttx 1>/dev/null
|
||||
fi
|
||||
}
|
||||
|
||||
|
@ -268,7 +275,7 @@ function build {
|
|||
cd $nuttx || { echo "ERROR: failed to CD to $nuttx"; exit 1; }
|
||||
echo " Building NuttX..."
|
||||
echo "------------------------------------------------------------------------------------"
|
||||
make -i 1>/dev/null
|
||||
${MAKE} ${MAKE_FLAGS} 1>/dev/null
|
||||
}
|
||||
|
||||
# Coordinate the steps for the next build test
|
||||
|
|
Loading…
Reference in a new issue