2014-07-19 00:10:26 +02:00
|
|
|
#!/bin/bash
|
2014-02-02 11:52:53 +01:00
|
|
|
|
|
|
|
cd $(dirname $0)
|
|
|
|
|
2016-12-25 15:19:51 +01:00
|
|
|
if [[ $OSTYPE == "darwin"* ]]; then
|
|
|
|
SOURCE=$(stat -f %N $(pwd)/android)
|
|
|
|
CCACHE=$(stat -f %N $(pwd)/ccache)
|
|
|
|
else
|
|
|
|
SOURCE=$(readlink -f $(pwd)/android)
|
|
|
|
CCACHE=$(readlink -f $(pwd)/ccache)
|
|
|
|
fi
|
|
|
|
|
2014-07-14 01:30:56 -04:00
|
|
|
CONTAINER_HOME=/home/cmbuild
|
2014-02-02 23:55:33 +01:00
|
|
|
CONTAINER=cyanogenmod
|
|
|
|
REPOSITORY=stucki/cyanogenmod
|
2016-01-22 14:03:08 +01:00
|
|
|
TAG=cm-13.0
|
2014-12-22 18:38:37 +01:00
|
|
|
FORCE_BUILD=0
|
2016-04-04 17:54:27 +02:00
|
|
|
PRIVILEGED=
|
|
|
|
|
2016-04-04 20:23:24 +02:00
|
|
|
while [[ $# > 0 ]]; do
|
|
|
|
key="$1"
|
|
|
|
case $key in
|
|
|
|
-r|--rebuild)
|
|
|
|
FORCE_BUILD=1
|
|
|
|
;;
|
|
|
|
-u|--enable-usb)
|
|
|
|
PRIVILEGED="--privileged -v /dev/bus/usb:/dev/bus/usb"
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
shift # past argument or value
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
shift
|
2016-04-04 17:54:27 +02:00
|
|
|
done
|
2014-02-02 11:52:53 +01:00
|
|
|
|
2014-06-28 16:19:18 +02:00
|
|
|
# Create shared folders
|
2016-04-04 17:55:06 +02:00
|
|
|
mkdir -p $SOURCE
|
|
|
|
mkdir -p $CCACHE
|
2014-02-02 11:52:53 +01:00
|
|
|
|
2014-07-14 01:30:56 -04:00
|
|
|
# Build image if needed
|
2015-04-03 19:58:10 +02:00
|
|
|
IMAGE_EXISTS=$(docker images $REPOSITORY)
|
2014-07-14 01:30:56 -04:00
|
|
|
if [ $? -ne 0 ]; then
|
|
|
|
echo "docker command not found"
|
|
|
|
exit $?
|
2015-04-03 19:58:10 +02:00
|
|
|
elif [[ $FORCE_BUILD = 1 ]] || ! echo "$IMAGE_EXISTS" | grep -q "$TAG"; then
|
2016-03-13 15:18:52 +01:00
|
|
|
# Pull Ubuntu image to be sure it's up to date
|
|
|
|
echo "Fetching Docker \"ubuntu\" image..."
|
2016-08-19 20:03:30 +03:00
|
|
|
docker pull ubuntu:16.04
|
2016-03-13 15:18:52 +01:00
|
|
|
|
2015-03-15 17:38:12 +01:00
|
|
|
echo "Building Docker image $REPOSITORY:$TAG..."
|
|
|
|
docker build -t $REPOSITORY:$TAG .
|
2016-03-31 21:51:28 +02:00
|
|
|
OK=$?
|
2015-04-03 20:29:37 +02:00
|
|
|
|
|
|
|
# After successful build, delete existing containers
|
|
|
|
IS_EXISTING=$(docker inspect -f '{{.Id}}' $CONTAINER 2>/dev/null)
|
2016-03-31 21:51:28 +02:00
|
|
|
if [[ $OK -eq 0 ]] && [[ -n "$IS_EXISTING" ]]; then
|
2015-04-03 20:29:37 +02:00
|
|
|
docker rm $CONTAINER
|
|
|
|
fi
|
2014-07-14 01:30:56 -04:00
|
|
|
fi
|
|
|
|
|
2016-03-31 21:51:28 +02:00
|
|
|
if [[ $OK -ne 0 ]]; then
|
2016-04-05 21:49:12 +02:00
|
|
|
exit 1
|
2016-03-31 21:51:28 +02:00
|
|
|
fi
|
|
|
|
|
2014-07-18 23:48:18 +02:00
|
|
|
# With the given name $CONTAINER, reconnect to running container, start
|
|
|
|
# an existing/stopped container or run a new one if one does not exist.
|
2014-07-14 01:30:56 -04:00
|
|
|
IS_RUNNING=$(docker inspect -f '{{.State.Running}}' $CONTAINER 2>/dev/null)
|
|
|
|
if [[ $IS_RUNNING == "true" ]]; then
|
|
|
|
docker attach $CONTAINER
|
|
|
|
elif [[ $IS_RUNNING == "false" ]]; then
|
|
|
|
docker start -i $CONTAINER
|
|
|
|
else
|
2016-04-04 17:54:27 +02:00
|
|
|
docker run $PRIVILEGED -v $SOURCE:$CONTAINER_HOME/android -v $CCACHE:/srv/ccache -i -t --name $CONTAINER $REPOSITORY:$TAG
|
2014-07-14 01:30:56 -04:00
|
|
|
fi
|
2014-02-02 11:52:53 +01:00
|
|
|
|
|
|
|
exit $?
|