summaryrefslogtreecommitdiffstats
path: root/packaging/makeself/build-static.sh
diff options
context:
space:
mode:
authorAustin S. Hemmelgarn <austin@netdata.cloud>2021-10-28 13:12:44 -0400
committerGitHub <noreply@github.com>2021-10-28 13:12:44 -0400
commit7eb25b2ff51bc7c40a4886c23ac97fb295f242cf (patch)
treef4e43a855ef12d45cdcbd041d6a8c85df773f01a /packaging/makeself/build-static.sh
parentc7a16dc75c4af1e05a6eab3d92c10fe9f4c49a48 (diff)
Add log grouping in installer and static build code when running under GitHub Actions. (#11720)
* Add log grouping in installer code when running under GitHub Actions. This will make our CI logs much easier to understand. * Add log grouping to static build process. * Use oneliner style group commands in netdata-installer.sh
Diffstat (limited to 'packaging/makeself/build-static.sh')
-rwxr-xr-xpackaging/makeself/build-static.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/packaging/makeself/build-static.sh b/packaging/makeself/build-static.sh
index 8d73dc5d91..69668966db 100755
--- a/packaging/makeself/build-static.sh
+++ b/packaging/makeself/build-static.sh
@@ -59,7 +59,7 @@ if [ -t 1 ]; then
/bin/sh /usr/src/netdata.git/packaging/makeself/build.sh "${@}"
else
run docker run -e BUILDARCH="${BUILDARCH}" -v "$(pwd)":/usr/src/netdata.git:rw \
- "${DOCKER_CONTAINER_NAME}" \
+ -e GITHUB_ACTIONS="${GITHUB_ACTIONS}" "${DOCKER_CONTAINER_NAME}" \
/bin/sh /usr/src/netdata.git/packaging/makeself/build.sh "${@}"
fi