You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
62 lines
1.2 KiB
62 lines
1.2 KiB
#!/bin/bash -x
|
|
# Inspired by https://github.com/google/fruit
|
|
|
|
: ${N_JOBS:=2}
|
|
: ${TIMEOUT:=2000}
|
|
|
|
if [ "$STL" != "" ]
|
|
then
|
|
STLARG="-stdlib=$STL"
|
|
fi
|
|
|
|
case $OS in
|
|
linux)
|
|
# Execute docker image on linux
|
|
# Stop previous session
|
|
docker rm -f storm &>/dev/null
|
|
# Run container
|
|
set -e
|
|
docker run -d -it --name storm --privileged mvolk/storm-basesystem:$LINUX
|
|
# Copy local content into container
|
|
docker exec storm mkdir storm
|
|
docker cp . storm:/storm
|
|
set +e
|
|
|
|
# Execute main process
|
|
timeout $TIMEOUT docker exec storm bash -c "
|
|
export COMPILER=$COMPILER;
|
|
export N_JOBS=$N_JOBS;
|
|
export STLARG=$STLARG;
|
|
export OS=$OS;
|
|
cd storm;
|
|
travis/postsubmit-helper.sh $1 $2"
|
|
EXITCODE=$?
|
|
if [ $EXITCODE = 124 ] && [ "$2" = "BuildLib1" ]
|
|
then
|
|
exit 0
|
|
else
|
|
exit $EXITCODE
|
|
fi
|
|
;;
|
|
|
|
osx)
|
|
# Mac OSX
|
|
export COMPILER
|
|
export N_JOBS
|
|
export STLARG
|
|
export OS
|
|
gtimeout $TIMEOUT travis/postsubmit-helper.sh "$1" "$2"
|
|
EXITCODE=$?
|
|
if [ $EXITCODE = 124 ] && [ "$2" = "BuildLib1" ]
|
|
then
|
|
exit 0
|
|
else
|
|
exit $EXITCODE
|
|
fi
|
|
;;
|
|
|
|
*)
|
|
# Other OS
|
|
echo "Unsupported OS: $OS"
|
|
exit 1
|
|
esac
|