summaryrefslogtreecommitdiffstats
path: root/packaging/makeself/jobs/50-curl-7.78.0.install.sh
diff options
context:
space:
mode:
Diffstat (limited to 'packaging/makeself/jobs/50-curl-7.78.0.install.sh')
-rwxr-xr-xpackaging/makeself/jobs/50-curl-7.78.0.install.sh4
1 files changed, 4 insertions, 0 deletions
diff --git a/packaging/makeself/jobs/50-curl-7.78.0.install.sh b/packaging/makeself/jobs/50-curl-7.78.0.install.sh
index 640871646d..d83c65419a 100755
--- a/packaging/makeself/jobs/50-curl-7.78.0.install.sh
+++ b/packaging/makeself/jobs/50-curl-7.78.0.install.sh
@@ -4,6 +4,8 @@
# shellcheck source=packaging/makeself/functions.sh
. "$(dirname "${0}")/../functions.sh" "${@}" || exit 1
+[ -n "${GITHUB_ACTIONS}" ] && echo "::group::Building cURL"
+
fetch "curl-7.78.0" "https://curl.haxx.se/download/curl-7.78.0.tar.gz"
export CFLAGS="-I/openssl-static/include"
@@ -45,3 +47,5 @@ run make install
if [ ${NETDATA_BUILD_WITH_DEBUG} -eq 0 ]; then
run strip "${NETDATA_INSTALL_PATH}"/bin/curl
fi
+
+[ -n "${GITHUB_ACTIONS}" ] && echo "::group::Preparing build environment"