netdata/netdata

View on GitHub
.github/scripts/build-static.sh

Summary

Maintainability
Test Coverage
#!/bin/sh
#
# Builds the netdata-vX.Y.Z-xxxx.gz.run (static x86_64) artifact.

set -e

# shellcheck source=.github/scripts/functions.sh
. "$(dirname "$0")/functions.sh"

BUILDARCH="${1}"
NAME="${NAME:-netdata}"
VERSION="${VERSION:-"$(git describe)"}"
BASENAME="$NAME-$BUILDARCH-$VERSION"

prepare_build() {
  test -d artifacts || mkdir -p artifacts
}

build_static() {
  USER="" ./packaging/makeself/build-static.sh "${BUILDARCH}"
}

prepare_assets() {
  cp packaging/version artifacts/latest-version.txt
}

steps="prepare_build build_static"
steps="$steps prepare_assets"

_main() {
  for step in $steps; do
    if ! run "$step"; then
      if [ -t 1 ]; then
        debug
      else
        fail "Build failed"
      fi
    fi
  done

  echo "🎉 All Done!"
}

if [ -n "$0" ] && [ x"$0" != x"-bash" ]; then
  _main "$@"
fi