forked from LesnyRumcajs/grpc_bench
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sh
executable file
·37 lines (33 loc) · 993 Bytes
/
build.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
#!/bin/sh
# Build ghz Docker image.
# See ghz-tool/Dockerfile for details/version
docker build -t ghz_bench:latest ./ghz-tool/
## The list of benchmarks to build
BENCHMARKS_TO_BUILD="${@}"
## ...or use all the *_bench dirs by default
BENCHMARKS_TO_BUILD="${BENCHMARKS_TO_BUILD:-$(find . -maxdepth 1 -name '*_bench' -type d | sort)}"
builds=""
for benchmark in ${BENCHMARKS_TO_BUILD}; do
echo "==> Building Docker image for ${benchmark}..."
( (
DOCKER_BUILDKIT=1 docker image build --force-rm --file "${benchmark}/Dockerfile" \
--tag "${benchmark##*/}" . >"${benchmark}.tmp" 2>&1 &&
rm -f "${benchmark}.tmp" &&
echo "==> Done building ${benchmark}"
) || (
cat "${benchmark}.tmp"
rm -f "${benchmark}.tmp"
echo "==> Error building ${benchmark}"
exit 1
) ) &
builds="${builds} ${!}"
done
echo "==> Waiting for the builds to finish..."
for job in ${builds}; do
if ! wait "${job}"; then
wait
echo "Error building Docker image(s)"
exit 1
fi
done
echo "All done."