lilium-voyager/jenkins-ci-build.sh

47 lines
926 B
Bash
Raw Normal View History

2013-03-21 15:49:47 +00:00
#!/bin/bash
UNAME=`uname`
2013-03-21 15:49:47 +00:00
MASTER_DIR=`dirname $0`
BUILD_DEFAULT="release"
2013-03-21 15:49:47 +00:00
cd ${MASTER_DIR}
if [ "$OPTIONS" = "all_options" ];
then
2014-08-27 15:48:55 +00:00
export USE_CODEC_VORBIS=1
export USE_FREETYPE=1
2013-03-21 15:49:47 +00:00
fi
if [ "$UNAME" == "Darwin" ]; then
CORES=`sysctl -n hw.ncpu`
elif [ "$UNAME" == "Linux" ]; then
CORES=`awk '/^processor/ { N++} END { print N }' /proc/cpuinfo`
fi
echo "platform : ${UNAME}"
echo "cores : ${CORES}"
if [ "${BUILD_TYPE}" == "" ]; then
BUILD_TYPE="${BUILD_DEFAULT}"
echo "build type : defaulting to ${BUILD_TYPE}"
else
echo "build type : ${BUILD_TYPE}"
fi
2013-03-21 15:49:47 +00:00
2014-08-27 15:48:55 +00:00
if [ -n "${CPPCHECK}" ]; then
2014-08-27 16:13:27 +00:00
if [ ! -f "${CPPCHECK}" ]; then
command -v cppcheck >/dev/null
2014-08-27 15:48:55 +00:00
if [ "$?" != "0" ]; then
echo "cppcheck not installed"
exit 1
fi
2014-08-27 16:13:27 +00:00
cppcheck --enable=all --max-configs=1 --xml --xml-version=2 code 2> ${CPPCHECK}
2014-08-27 15:48:55 +00:00
fi
2014-08-27 16:13:27 +00:00
ln -s ${CPPCHECK} cppcheck.xml
2014-08-27 15:48:55 +00:00
fi
2013-03-22 16:53:29 +00:00
make -j${CORES} distclean ${BUILD_TYPE}
2013-03-21 15:49:47 +00:00
exit $?