-
Notifications
You must be signed in to change notification settings - Fork 4.9k
/
Copy pathjenkins_release.sh
executable file
·52 lines (43 loc) · 1.46 KB
/
jenkins_release.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
46
47
48
49
50
51
52
#!/usr/bin/env bash
set -euox pipefail
: "${HOME:?Need to set HOME to a non-empty value.}"
: "${WORKSPACE:?Need to set WORKSPACE to a non-empty value.}"
source $(dirname "$0")/common.bash
jenkins_setup
docker_setup
cleanup() {
echo "Running cleanup..."
rm -rf $TEMP_PYTHON_ENV
if docker info > /dev/null ; then
echo "Killing all running containers..."
ids=$(docker ps -q)
if [ -n "$ids" ]; then
docker kill $ids
fi
echo "Cleaning stopped docker containers and dangling images/networks/volumes..."
docker system prune -f || true
os=$(uname -s)
if [ "$os" == "Darwin" ]; then
# Clean images accept for the ones we're currently using in order to
# gain some disk space.
echo "Disk space before image cleanup:"
df -h /
docker system df
echo "Cleaning images"
docker images --format "{{.ID}} {{.Repository}}:{{.Tag}}" \
| grep -v "docker.elastic.co/beats-dev/golang-crossbuild:$(cat .go-version)-" \
| awk '{print $1}' \
| xargs docker rmi -f || true
echo "Disk space after image cleanup:"
df -h /
docker system df
fi
fi
echo "Cleanup complete."
}
trap cleanup EXIT
# This controls the defaults used the Jenkins package job. They can be
# overridden by setting them in the environment prior to running this script.
export SNAPSHOT="${SNAPSHOT:-true}"
export PLATFORMS="${PLATFORMS:-+linux/armv7 +linux/ppc64le +linux/s390x +linux/mips64}"
make release