0
0
Fork 0
mirror of https://github.com/netdata/netdata.git synced 2025-04-28 22:52:30 +00:00
netdata_netdata/packaging/makeself/jobs/89-buildinfo.install.sh
Austin S. Hemmelgarn 686818c6b1
Dump Netdata buildinfo during CI. (#19918)
* Dump Netdata buildinfo during CI.

* Fix Windows build info.

* Ignore buildinfo dump failures during build process.
2025-04-11 06:57:45 -04:00

14 lines
435 B
Bash
Executable file

#!/usr/bin/env bash
# SPDX-License-Identifier: GPL-3.0-or-later
# shellcheck source=./packaging/makeself/functions.sh
. "${NETDATA_MAKESELF_PATH}"/functions.sh "${@}" || exit 1
# shellcheck disable=SC2015
[ "${GITHUB_ACTIONS}" = "true" ] && echo "::group::Netdata buildinfo" || true
run "${NETDATA_INSTALL_PATH}/bin/netdata" -W buildinfo
# shellcheck disable=SC2015
[ "${GITHUB_ACTIONS}" = "true" ] && echo "::endgroup::" || true