mirror of
https://github.com/UberGames/ioef.git
synced 2024-11-23 12:42:26 +00:00
Add cppcheck stage to jenkins script
This commit is contained in:
parent
86b75ba936
commit
19ee6a86eb
1 changed files with 18 additions and 2 deletions
|
@ -8,8 +8,8 @@ cd ${MASTER_DIR}
|
|||
|
||||
if [ "$OPTIONS" = "all_options" ];
|
||||
then
|
||||
export USE_CODEC_VORBIS=1
|
||||
export USE_FREETYPE=1
|
||||
export USE_CODEC_VORBIS=1
|
||||
export USE_FREETYPE=1
|
||||
fi
|
||||
|
||||
if [ "$UNAME" == "Darwin" ]; then
|
||||
|
@ -27,6 +27,22 @@ else
|
|||
echo "build type : ${BUILD_TYPE}"
|
||||
fi
|
||||
|
||||
if [ -n "${CPPCHECK}" ]; then
|
||||
if [ -e "${CPPCHECK}" ]; then
|
||||
# Copy the existing output
|
||||
BASENAME_CPPCHECK=`basename ${CPPCHECK}`
|
||||
cp ${CPPCHECK} ./${BASENAME_CPPCHECK}
|
||||
else
|
||||
CHECK_CPPCHECK=`command -v cppcheck >/dev/null`
|
||||
if [ "$?" != "0" ]; then
|
||||
echo "cppcheck not installed"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
cppcheck --enable=all --max-configs=1 --xml --xml-version=2 ./code 2> ${CPPCHECK}
|
||||
fi
|
||||
fi
|
||||
|
||||
make -j${CORES} distclean ${BUILD_TYPE}
|
||||
|
||||
exit $?
|
||||
|
|
Loading…
Reference in a new issue