mirror of
https://github.com/netdata/netdata.git
synced 2025-04-17 11:12:42 +00:00

* Skip building Go components for Docker CI if they have not changed. * Properly handle Go code in general checks PR. * Skip Go code in build checks if it hasn’t changed. * Fix linting issues. * Fix propagation of installer flags. * Fix propagation of environment variables through static build process. * Fix handling of extra install options in static builds. * Skip starting the agent in updater checks. * Fix actionlint warning.
64 lines
2.2 KiB
Bash
Executable file
64 lines
2.2 KiB
Bash
Executable file
#!/bin/bash
|
|
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
# shellcheck source=./packaging/installer/functions.sh
|
|
. "$(dirname "$0")"/../installer/functions.sh || exit 1
|
|
|
|
BUILDARCH="${1}"
|
|
|
|
set -e
|
|
|
|
platform="$("$(dirname "${0}")/uname2platform.sh" "${BUILDARCH}")"
|
|
|
|
if [ -z "${platform}" ]; then
|
|
exit 1
|
|
fi
|
|
|
|
if command -v docker > /dev/null 2>&1; then
|
|
docker="docker"
|
|
elif command -v podman > /dev/null 2>&1; then
|
|
docker="podman"
|
|
else
|
|
echo "Could not find a usable OCI runtime, need either Docker or Podman."
|
|
exit 1
|
|
fi
|
|
|
|
DOCKER_IMAGE_NAME="netdata/static-builder:v1"
|
|
|
|
if [ "${BUILDARCH}" != "$(uname -m)" ] && [ -z "${SKIP_EMULATION}" ]; then
|
|
if [ "$(uname -m)" = "x86_64" ]; then
|
|
${docker} run --rm --privileged multiarch/qemu-user-static --reset -p yes || exit 1
|
|
else
|
|
echo "Automatic cross-architecture builds are only supported on x86_64 hosts."
|
|
exit 1
|
|
fi
|
|
fi
|
|
|
|
if ${docker} inspect "${DOCKER_IMAGE_NAME}" > /dev/null 2>&1; then
|
|
if ${docker} image inspect "${DOCKER_IMAGE_NAME}" | grep -q 'Variant'; then
|
|
img_platform="$(${docker} image inspect "${DOCKER_IMAGE_NAME}" --format '{{.Os}}/{{.Architecture}}/{{.Variant}}')"
|
|
else
|
|
img_platform="$(${docker} image inspect "${DOCKER_IMAGE_NAME}" --format '{{.Os}}/{{.Architecture}}')"
|
|
fi
|
|
|
|
if [ "${img_platform}" != "${platform}" ]; then
|
|
${docker} image rm "${DOCKER_IMAGE_NAME}" || exit 1
|
|
fi
|
|
fi
|
|
|
|
if ! ${docker} inspect "${DOCKER_IMAGE_NAME}" > /dev/null 2>&1; then
|
|
${docker} pull --platform "${platform}" "${DOCKER_IMAGE_NAME}"
|
|
fi
|
|
|
|
# Run the build script inside the container
|
|
if [ -t 1 ]; then
|
|
run ${docker} run --rm -e BUILDARCH="${BUILDARCH}" -a stdin -a stdout -a stderr -i -t -v "$(pwd)":/netdata:rw \
|
|
--platform "${platform}" ${EXTRA_INSTALL_FLAGS:+-e EXTRA_INSTALL_FLAGS="${EXTRA_INSTALL_FLAGS}"} \
|
|
"${DOCKER_IMAGE_NAME}" /bin/sh /netdata/packaging/makeself/build.sh "${@}"
|
|
else
|
|
run ${docker} run --rm -e BUILDARCH="${BUILDARCH}" -v "$(pwd)":/netdata:rw \
|
|
-e GITHUB_ACTIONS="${GITHUB_ACTIONS}" --platform "${platform}" \
|
|
${EXTRA_INSTALL_FLAGS:+-e EXTRA_INSTALL_FLAGS="${EXTRA_INSTALL_FLAGS}"} \
|
|
"${DOCKER_IMAGE_NAME}" /bin/sh /netdata/packaging/makeself/build.sh "${@}"
|
|
fi
|