Files
telegraf/release.sh
T
Joshua Delsman 0aa0a40d89 Add linux/arm to list of built binaries
This can help with Raspberry Pis, embedded devices, and other IoT applications.
2015-06-19 21:53:58 -07:00

19 lines
350 B
Bash
Executable File

#!/bin/bash
VERSION="0.9.b1"
echo "Building Telegraf version $VERSION"
mkdir -p pkg
build() {
echo -n "=> $1-$2: "
GOOS=$1 GOARCH=$2 go build -o pkg/telegraf-$1-$2 -ldflags "-X main.Version $VERSION" ./cmd/telegraf/telegraf.go
du -h pkg/telegraf-$1-$2
}
build "darwin" "amd64"
build "linux" "amd64"
build "linux" "386"
build "linux" "arm"