diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2023-02-06 16:11:34 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2023-02-06 16:11:34 +0000 |
commit | d079b656b4719739b2247dcd9d46e9bec793095a (patch) | |
tree | d2c950c70a776bcf697c963151c5bd959f8a9f03 /build-artifacts.sh | |
parent | Releasing debian version 1.37.1-2. (diff) | |
download | netdata-d079b656b4719739b2247dcd9d46e9bec793095a.tar.xz netdata-d079b656b4719739b2247dcd9d46e9bec793095a.zip |
Merging upstream version 1.38.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rwxr-xr-x | build-artifacts.sh | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/build-artifacts.sh b/build-artifacts.sh deleted file mode 100755 index a759efd6..00000000 --- a/build-artifacts.sh +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/sh - -BASENAME="netdata-$(git describe)" - -mkdir -p artifacts - -autoreconf -ivf -./configure \ - --prefix=/usr \ - --sysconfdir=/etc \ - --localstatedir=/var \ - --libexecdir=/usr/libexec \ - --with-zlib \ - --with-math \ - --with-user=netdata \ - CFLAGS=-O2 -make dist -mv "${BASENAME}.tar.gz" artifacts/ - -USER="" ./packaging/makeself/build-x86_64-static.sh - -cp packaging/version artifacts/latest-version.txt - -cd artifacts || exit 1 -ln -s "${BASENAME}.tar.gz" netdata-latest.tar.gz -ln -s "${BASENAME}.gz.run" netdata-latest.gz.run -sha256sum -b ./* > "sha256sums.txt" |