-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.sh
executable file
·77 lines (64 loc) · 2.24 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
#!/bin/bash
# Copyright (c) Joby Aviation 2022
# Original authors: Thulio Ferraz Assis ([email protected]), Aspect.dev
#
# Copyright (c) Thulio Ferraz Assis 2024
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
readonly arch=$1
readonly output_dir=$2
readonly variant=$3
set -o errexit -o nounset -o pipefail
if [ -z "${arch}" ]; then
>&2 echo "ERROR: the first argument of the script must be the architecture."
exit 1
fi
if [ -z "${output_dir}" ]; then
>&2 echo "ERROR: the second argument of the script must be the output directory."
exit 1
fi
if [ -z "${variant}" ]; then
>&2 echo "ERROR: the third argument of the script must be the variant (base, X11)."
exit 1
fi
echo "INFO: building sysroot inside container..."
sysroot_dir="$(git rev-parse --show-toplevel)"
output=$(realpath "${output_dir}/sysroot-${variant}-${arch}.tar.xz")
image_tag=$(tr '[:upper:]' '[:lower:]' <<<"sysroot-${variant}-${arch}")
(cd "${sysroot_dir}"; \
docker build \
--build-arg ARCH="${arch}" \
--tag "${image_tag}" \
--target "sysroot_${variant}" \
.)
echo "INFO: exporting sysroot to '${output}'..."
tmpdir="$(mktemp -d)"
function remove_tmpdir {
rm -rf "${tmpdir}"
}
trap remove_tmpdir EXIT
container_id="$(docker create "${image_tag}")"
function remove_container {
docker rm "${container_id}"
remove_tmpdir
}
trap remove_container EXIT
docker cp "${container_id}:/var/builds/sysroot" "${tmpdir}"
readonly os_name="$(uname -s)"
if [[ "${os_name}" == "Linux" ]]; then
readonly cpus="$(nproc --all)"
elif [[ "${os_name}" == "Darwin" ]]; then
readonly cpus="$(sysctl -n hw.ncpu)"
fi
(cd "${tmpdir}/sysroot"; tar --create --file /dev/stdout . | XZ_DEFAULTS="--threads ${cpus}" xz -9e > "${output}")
shasum -a 256 "${output}"