mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-11-01 06:50:00 +00:00
03479312f1
- explicity disable cgo - ensure static builds - reduce binary size - small formatting changes Signed-off-by: kim (grufwub) <grufwub@gmail.com>
12 lines
333 B
Bash
Executable file
12 lines
333 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -eu
|
|
|
|
COMMIT=$(git rev-list -1 HEAD)
|
|
VERSION=$(cat ./version)
|
|
|
|
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
|