gostations/ci-build.sh

21 lines
431 B
Bash
Raw Permalink Normal View History

2024-07-21 16:29:16 +00:00
#!/usr/bin/env sh
mkdir build
GIT_COMMIT=$(git rev-list -1 HEAD)
export GIT_COMMIT
CANONICAL_VERSION=$(cat ./VERSION)-$(uname)
export CANONICAL_VERSION
VERSION_STRING="$CANONICAL_VERSION-$GIT_COMMIT"
export VERSION_STRING
buildpath="build/$(uname)/gostations"
2024-07-21 16:35:28 +00:00
/usr/local/go/bin/go mod vendor
/usr/local/go/bin/go mod tidy
2024-07-21 16:29:16 +00:00
2024-07-21 16:35:28 +00:00
/usr/local/go/bin/go build -o "$buildpath" -ldflags "-X main.version=$VERSION_STRING"
2024-07-21 16:29:16 +00:00
"$buildpath" -v