2017-08-08 19:13:59 +00:00
|
|
|
|
#!/bin/bash
|
|
|
|
|
#
|
|
|
|
|
# Script to build under docker
|
|
|
|
|
#
|
|
|
|
|
# Copyright : GNU/AGPLv3
|
|
|
|
|
#
|
|
|
|
|
# Created : 1 AUG 2017
|
|
|
|
|
# Created by : AleaJactaEst
|
|
|
|
|
|
|
|
|
|
declare -i REMOVE=0
|
|
|
|
|
declare -i IMAGE=1
|
|
|
|
|
declare -i BUILD=1
|
|
|
|
|
declare -i DEBUG=0
|
|
|
|
|
declare JOBS=""
|
|
|
|
|
declare CMAKEOPTS=""
|
2017-08-27 14:38:04 +00:00
|
|
|
|
declare DOCKEROPTS=""
|
2017-08-08 19:13:59 +00:00
|
|
|
|
declare DIRBUILD=""
|
|
|
|
|
declare CLEANDOCKER=0
|
|
|
|
|
|
|
|
|
|
declare IMAGEDOCKER="builder_khanat_jessie_x86_64"
|
|
|
|
|
declare LOCALBUILDDIR="build_linux64"
|
|
|
|
|
declare LOCALSRC="debian/jessie/x86_64"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
usage()
|
|
|
|
|
{
|
|
|
|
|
cat << EOF
|
|
|
|
|
usage:$0 [options]
|
|
|
|
|
script to build under docker
|
|
|
|
|
|
|
|
|
|
Step:
|
|
|
|
|
1) clean old build directory
|
|
|
|
|
2) create image builder
|
|
|
|
|
3) launch build under docker (launch script build-under-docker.sh)
|
|
|
|
|
4) remove docker container with state exited
|
|
|
|
|
|
|
|
|
|
options:
|
|
|
|
|
-h, --help : Show this help
|
|
|
|
|
-d, --debug : Show debug message
|
|
|
|
|
-r, --remove : Remove old build repository
|
|
|
|
|
-i, --image-only : Just create image (no build)
|
|
|
|
|
-b, --build-only : Just build (no create new image)
|
|
|
|
|
-j [N], --jobs[=N] Allow N jobs at once; infinite jobs with no arg.
|
|
|
|
|
-a OPTS, --add-opts-cmake=OPTS : Adding options on cmake command (before build)
|
|
|
|
|
-c, --clean-container : remove all container in state Exited
|
2017-08-27 14:38:04 +00:00
|
|
|
|
-m OPTS, --add-opts-docker=OPTS : Adding options on docker command (when build)
|
|
|
|
|
--only-build-server : adding option to build only server
|
2017-08-08 19:13:59 +00:00
|
|
|
|
|
|
|
|
|
Example :
|
|
|
|
|
cd [root Khanat directory]
|
2017-08-27 14:38:04 +00:00
|
|
|
|
./build.sh -c -r -m '-m 20g'
|
|
|
|
|
./build.sh -c -r -j 4 -a '-DWITH_SYMBOLS=ON' -a '-DWITH_RYZOM_TOOLS=OFF' -a '-DWITH_NEL_TOOLS=OFF' -m '-m 20g' -d
|
|
|
|
|
|
2017-08-08 19:13:59 +00:00
|
|
|
|
EOF
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function msg_debug()
|
|
|
|
|
{
|
|
|
|
|
if [[ $DEBUG -ne 0 ]]
|
|
|
|
|
then
|
|
|
|
|
echo "$(date "+%Y/%m/%d %H:%M:%S") DEBUG - $*"
|
|
|
|
|
fi
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function msg_info()
|
|
|
|
|
{
|
|
|
|
|
echo "$(date "+%Y/%m/%d %H:%M:%S") INFO - $*"
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function msg_error()
|
|
|
|
|
{
|
|
|
|
|
echo "$(date "+%Y/%m/%d %H:%M:%S") ERROR - $*" >&2
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
|
# MAIN
|
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
calldir="$(dirname $0)"
|
|
|
|
|
basedir=$(cd $calldir; pwd)
|
|
|
|
|
rootdir="$(dirname $(dirname $(dirname $(dirname $(dirname $(dirname ${basedir}))))))"
|
|
|
|
|
|
|
|
|
|
while test $# -gt 0
|
|
|
|
|
do
|
|
|
|
|
case "$1" in
|
|
|
|
|
-h|--help)
|
|
|
|
|
usage
|
|
|
|
|
exit 1
|
|
|
|
|
;;
|
|
|
|
|
-d|--debug)
|
|
|
|
|
DEBUG=1
|
|
|
|
|
shift
|
|
|
|
|
;;
|
|
|
|
|
-c|--clean-container)
|
|
|
|
|
CLEANDOCKER=1
|
|
|
|
|
shift
|
|
|
|
|
;;
|
|
|
|
|
-r|--remove)
|
|
|
|
|
REMOVE=1
|
|
|
|
|
shift
|
|
|
|
|
;;
|
|
|
|
|
-i|--image-only)
|
|
|
|
|
BUILD=0
|
|
|
|
|
IMAGE=1
|
|
|
|
|
shift
|
|
|
|
|
;;
|
|
|
|
|
-b|--build-only)
|
|
|
|
|
BUILD=1
|
|
|
|
|
IMAGE=0
|
|
|
|
|
shift
|
|
|
|
|
;;
|
|
|
|
|
-j)
|
|
|
|
|
shift
|
|
|
|
|
# search next argument is value or new argument
|
|
|
|
|
if [[ ${1:0:1} == "-" ]]
|
|
|
|
|
then
|
|
|
|
|
JOBS="-j"
|
|
|
|
|
else
|
|
|
|
|
JOBS="-j $1"
|
|
|
|
|
shift
|
|
|
|
|
fi
|
|
|
|
|
;;
|
|
|
|
|
--jobs*)
|
|
|
|
|
if [[ ${1#*=} == "" ]]
|
|
|
|
|
then
|
|
|
|
|
JOBS="-j"
|
|
|
|
|
else
|
|
|
|
|
JOBS="-j ${1#*=}"
|
|
|
|
|
fi
|
|
|
|
|
shift
|
|
|
|
|
;;
|
|
|
|
|
-a)
|
|
|
|
|
shift
|
|
|
|
|
CMAKEOPTS="$CMAKEOPTS $1"
|
|
|
|
|
shift
|
|
|
|
|
;;
|
|
|
|
|
--add-opts-cmake=*)
|
|
|
|
|
CMAKEOPTS="$CMAKEOPTS ${1#*=}"
|
|
|
|
|
shift
|
|
|
|
|
;;
|
2017-08-27 14:38:04 +00:00
|
|
|
|
-m)
|
|
|
|
|
shift
|
|
|
|
|
DOCKEROPTS="$DOCKEROPTS $1"
|
|
|
|
|
shift
|
|
|
|
|
;;
|
|
|
|
|
--add-opts-docker=*)
|
|
|
|
|
DOCKEROPTS="$DOCKEROPTS ${1#*=}"
|
|
|
|
|
shift
|
|
|
|
|
;;
|
|
|
|
|
--only-build-server)
|
|
|
|
|
CMAKEOPTS="$CMAKEOPTS -DWITH_NEL_TESTS=OFF -DWITH_RYZOM_CLIENT=OFF -DWITH_DRIVER_OPENGL=OFF -DWITH_DRIVER_OPENAL=OFF -DWITH_NEL_SAMPLES=OFF -DWITH_SOUND=OFF"
|
|
|
|
|
shift
|
|
|
|
|
;;
|
2017-08-08 19:13:59 +00:00
|
|
|
|
*)
|
|
|
|
|
msg_error "options '$1' not recoginze"
|
|
|
|
|
usage
|
|
|
|
|
exit 1
|
|
|
|
|
;;
|
|
|
|
|
esac
|
|
|
|
|
done
|
|
|
|
|
|
|
|
|
|
function chrashed()
|
|
|
|
|
{
|
|
|
|
|
msg_error "BUILD FAILED (code:$?)"
|
|
|
|
|
exit 2
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
trap chrashed EXIT
|
|
|
|
|
|
|
|
|
|
msg_debug "prg: $0"
|
|
|
|
|
|
|
|
|
|
docker -v 1>/dev/null
|
|
|
|
|
if [[ $? -ne 0 ]]
|
|
|
|
|
then
|
|
|
|
|
echo "*** ERROR docker not installed"
|
|
|
|
|
exit 2
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
DIRBUILD="${rootdir}/code/${LOCALBUILDDIR}"
|
|
|
|
|
|
|
|
|
|
msg_debug "calldir: $calldir"
|
|
|
|
|
msg_debug "basedir: $basedir"
|
|
|
|
|
msg_debug "rootdir: $rootdir"
|
|
|
|
|
msg_debug "JOBS: '$JOBS'"
|
|
|
|
|
msg_debug "CMAKEOPTS: '$CMAKEOPTS'"
|
2017-08-27 14:38:04 +00:00
|
|
|
|
msg_debug "DOCKEROPTS: '$DOCKEROPTS'"
|
2017-08-08 19:13:59 +00:00
|
|
|
|
|
|
|
|
|
mkdir -p "${DIRBUILD}"
|
|
|
|
|
if [[ $REMOVE -ne 0 ]]
|
|
|
|
|
then
|
|
|
|
|
msg_info "REMOVE OLD BUILD"
|
|
|
|
|
rm -rf ${DIRBUILD}/* || exit 2
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
touch ${DIRBUILD}/build.log
|
|
|
|
|
|
|
|
|
|
cat << EOF > ${DIRBUILD}/envi.sh
|
|
|
|
|
#!/bin/bash
|
|
|
|
|
export MAKEOPTS="$JOBS"
|
|
|
|
|
export CMAKEOPTS="$CMAKEOPTS"
|
|
|
|
|
EOF
|
|
|
|
|
|
|
|
|
|
if [[ $IMAGE -ne 0 ]]
|
|
|
|
|
then
|
|
|
|
|
msg_info "GENERATE DOCKER IMAGE"
|
|
|
|
|
cd $rootdir; docker build . -t ${IMAGEDOCKER} \
|
|
|
|
|
--file "${basedir}/Dockerfile" || exit 2
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
if [[ $BUILD -ne 0 ]]
|
|
|
|
|
then
|
|
|
|
|
msg_info "BUILD"
|
|
|
|
|
cd $rootdir; docker run -it \
|
|
|
|
|
--hostname=builder \
|
|
|
|
|
-u "$(id -u $USERNAME):$(id -g $USERNAME)" \
|
|
|
|
|
-v $rootdir/dist:/opt/dist \
|
|
|
|
|
-v $rootdir/code:/opt/code \
|
2017-08-27 14:38:04 +00:00
|
|
|
|
${DOCKEROPTS} \
|
2017-08-08 19:13:59 +00:00
|
|
|
|
${IMAGEDOCKER} \
|
|
|
|
|
/opt/dist/docker/builder/${LOCALSRC}/build-under-docker.sh "/opt/code/${LOCALBUILDDIR}/" || exit 2
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
if [[ $CLEANDOCKER -ne 0 ]]
|
|
|
|
|
then
|
|
|
|
|
msg_info "CLEAN CONTAINER"
|
|
|
|
|
docker rm --force `docker ps -qf 'status=exited' -f "ancestor=${IMAGEDOCKER}"` || exit 2
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
trap '' EXIT
|
|
|
|
|
msg_info "END"
|