diff options
author | 2022-04-28 13:32:53 +0100 | |
---|---|---|
committer | 2022-04-28 13:32:53 +0100 | |
commit | 69011d4901a042a9fba3d6d71061c25d20a9ecdc (patch) | |
tree | 6cbd14ba41eddfe9c223542467dce95824664bad /scripts/build.sh | |
parent | replace async client API / federator msg processing with worker pools (#497) (diff) | |
download | gotosocial-69011d4901a042a9fba3d6d71061c25d20a9ecdc.tar.xz |
Add support for running profiling when debug build-tags provided (#491)
* wrap root HTTP handler in debug.WithPprof(), rearrange router.Start() to support this
* remove unused code
* set debug buildtag in build script when $DEBUG set
* update go-debug version with fixed handler
* use clone of router.srv for LE cert manager, reset server timeouts in debug
* add kim's other libraries to README
Diffstat (limited to 'scripts/build.sh')
-rwxr-xr-x | scripts/build.sh | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/scripts/build.sh b/scripts/build.sh index 4ad10e03c..a71a0899a 100755 --- a/scripts/build.sh +++ b/scripts/build.sh @@ -2,7 +2,10 @@ set -eu +# DEBUG returns whether DEBUG build is enabled. +DEBUG() { [ ! -z "${DEBUG-}" ]; } + CGO_ENABLED=0 go build -trimpath \ - -tags 'netgo osusergo static_build' \ + -tags "netgo osusergo static_build $(DEBUG && echo 'debugenv')" \ -ldflags="-s -w -extldflags '-static' -X 'main.Version=${VERSION:-$(git describe --tags --abbrev=0)}'" \ ./cmd/gotosocial |