Files
ODrive/dockerbuild.sh
2021-11-20 13:12:14 -05:00

46 lines
884 B
Bash
Executable File

#!/usr/bin/env bash
function cleanup {
echo "Removing previous build artifacts"
rm -rf build/ Firmware/autogen Firmware/build Firmware/.tup
docker rm odrive-build-cont
}
function gc {
cleanup
docker rmi odrive-build-img
docker image prune
}
function build {
cleanup
echo "Building the build-environment image"
docker build -t odrive-build-img .
echo "Build in container"
docker run -it -v $(pwd):/ODrive --name odrive-build-cont --user $(id -u) odrive-build-img:latest
}
function usage {
echo "usage: $0 (build | cleanup | gc)"
echo
echo "build -- build in docker and extract the artifacts."
echo "cleanup -- remove build artifacts from previous build"
echo "gc -- remove all build images and containers"
}
case $1 in
build)
build
;;
cleanup)
cleanup
;;
gc)
gc
;;
*)
usage
;;
esac