1234567891011121314151617181920212223242526272829 |
- #!/bin/sh
- echo ">>> Installing CI support packages..."
- /netdata/.github/scripts/ci-support-pkgs.sh
- echo ">>> Installing Netdata..."
- /netdata/packaging/installer/kickstart.sh --dont-wait --build-only --disable-telemetry || exit 1
- echo "::group::>>> Pre-Update Environment File Contents"
- cat /etc/netdata/.environment
- echo "::endgroup::"
- echo "::group::>>> Pre-Update Netdata Build Info"
- netdata -W buildinfo
- echo "::endgroup::"
- echo ">>> Updating Netdata..."
- export NETDATA_BASE_URL="http://localhost:8080/artifacts/" # Pull the tarball from the local web server.
- timeout 3600 /netdata/packaging/installer/netdata-updater.sh --not-running-from-cron --no-updater-self-update
- case "$?" in
- 124) echo "!!! Updater timed out." ; exit 1 ;;
- 0) ;;
- *) echo "!!! Updater failed." ; exit 1 ;;
- esac
- echo "::group::>>> Post-Update Environment File Contents"
- cat /etc/netdata/.environment
- echo "::endgroup::"
- echo "::group::>>> Post-Update Netdata Build Info"
- netdata -W buildinfo
- echo "::endgroup::"
- echo ">>> Checking if update was successful..."
- /netdata/.github/scripts/check-updater.sh || exit 1
|