diff options
author | 2022-04-02 15:40:09 +0200 | |
---|---|---|
committer | 2022-04-02 15:40:09 +0200 | |
commit | 03d7c75ebf1b81b12ec21f95eef1c07b265ff939 (patch) | |
tree | 511724f53946563a3b7ba1307d25f5bda98ac3a8 /scripts/build.sh | |
parent | [documentation] Add third-party packaging to documentation (#443) (diff) | |
download | gotosocial-03d7c75ebf1b81b12ec21f95eef1c07b265ff939.tar.xz |
[chore] Update Go version to 1.18 (#444)
* linting with new golangci-lint version
* update go to 1.18
* bump versions in drone.yml
* use new runtime/debug package for version info
* remove Commit build flag from goreleaser
* remove mock commit + version from build script
* go fmt
* add dummy version env flag to test container
* install git in golang container for testing
* only set versionString if Version is defined
Diffstat (limited to 'scripts/build.sh')
-rwxr-xr-x | scripts/build.sh | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/scripts/build.sh b/scripts/build.sh index 6c3f86778..4ad10e03c 100755 --- a/scripts/build.sh +++ b/scripts/build.sh @@ -2,10 +2,7 @@ set -eu -COMMIT="${COMMIT:-1234567}" -VERSION="${VERSION:-0.0.0}" - CGO_ENABLED=0 go build -trimpath \ -tags 'netgo osusergo static_build' \ - -ldflags="-s -w -extldflags '-static' -X 'main.Commit=${COMMIT}' -X 'main.Version=${VERSION}'" \ + -ldflags="-s -w -extldflags '-static' -X 'main.Version=${VERSION:-$(git describe --tags --abbrev=0)}'" \ ./cmd/gotosocial |