2021-06-28 12:17:20 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
set -eu
|
|
|
|
|
2021-12-07 13:31:39 +01:00
|
|
|
COMMIT="${COMMIT:-1234567}"
|
2021-09-24 13:14:20 +02:00
|
|
|
VERSION="${VERSION:-0.0.0}"
|
2021-06-28 12:17:20 +02:00
|
|
|
|
2021-08-26 12:19:52 +02:00
|
|
|
CGO_ENABLED=0 go build -trimpath \
|
|
|
|
-tags 'netgo osusergo static_build' \
|
|
|
|
-ldflags="-s -w -extldflags '-static' -X 'main.Commit=${COMMIT}' -X 'main.Version=${VERSION}'" \
|
|
|
|
./cmd/gotosocial
|