forked from odriverobotics/ODrive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdockerbuild.sh
executable file
·45 lines (39 loc) · 884 Bytes
/
dockerbuild.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#!/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