65f81990a7
… instead of /bin/bash, to work better on more platforms. Signed-off-by: Vincent Demeester <vincent@sbr.pm>
33 lines
726 B
Bash
Executable file
33 lines
726 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
if ! test -e autogen/gen.go; then
|
|
echo >&2 'error: generate must be run before binary'
|
|
false
|
|
fi
|
|
|
|
rm -f dist/traefik
|
|
|
|
FLAGS=""
|
|
if [ -n "$VERBOSE" ]; then
|
|
FLAGS="${FLAGS} -v"
|
|
fi
|
|
|
|
if [ -z "$VERSION" ]; then
|
|
VERSION=$(git rev-parse HEAD)
|
|
fi
|
|
|
|
if [ -z "$CODENAME" ]; then
|
|
CODENAME=cheddar
|
|
fi
|
|
|
|
if [ -z "$DATE" ]; then
|
|
DATE=$(date -u '+%Y-%m-%d_%I:%M:%S%p')
|
|
fi
|
|
|
|
# Build binaries
|
|
CGO_ENABLED=0 GOGC=off go build $FLAGS -ldflags "-s -w \
|
|
-X github.com/containous/traefik/version.Version=$VERSION \
|
|
-X github.com/containous/traefik/version.Codename=$CODENAME \
|
|
-X github.com/containous/traefik/version.BuildDate=$DATE" \
|
|
-a -installsuffix nocgo -o dist/traefik ./cmd/traefik
|