mirror of
https://github.com/apernet/hysteria.git
synced 2025-04-03 04:27:39 +03:00
64 lines
1.6 KiB
Bash
Executable file
64 lines
1.6 KiB
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
# Hysteria build script for Linux
|
|
# Environment variable options:
|
|
# - HY_APP_VERSION: App version
|
|
# - HY_APP_COMMIT: App commit hash
|
|
# - HY_APP_PLATFORMS: Platforms to build for (e.g. "windows/amd64,linux/amd64,darwin/amd64")
|
|
|
|
if ! [ -x "$(command -v go)" ]; then
|
|
echo 'Error: go is not installed.' >&2
|
|
exit 1
|
|
fi
|
|
|
|
if ! [ -x "$(command -v git)" ]; then
|
|
echo 'Error: git is not installed.' >&2
|
|
exit 1
|
|
fi
|
|
if ! git rev-parse --is-inside-work-tree >/dev/null 2>&1; then
|
|
echo 'Error: not in a git repository.' >&2
|
|
exit 1
|
|
fi
|
|
|
|
ldflags="-s -w -X 'main.appDate=$(date -u '+%F %T')'"
|
|
if [ -n "$HY_APP_VERSION" ]; then
|
|
ldflags="$ldflags -X 'main.appVersion=$HY_APP_VERSION'"
|
|
else
|
|
ldflags="$ldflags -X 'main.appVersion=$(git describe --tags --always)'"
|
|
fi
|
|
if [ -n "$HY_APP_COMMIT" ]; then
|
|
ldflags="$ldflags -X 'main.appCommit=$HY_APP_COMMIT'"
|
|
else
|
|
ldflags="$ldflags -X 'main.appCommit=$(git rev-parse HEAD)'"
|
|
fi
|
|
|
|
if [ -z "$HY_APP_PLATFORMS" ]; then
|
|
HY_APP_PLATFORMS="$(go env GOOS)/$(go env GOARCH)"
|
|
fi
|
|
platforms=(${HY_APP_PLATFORMS//,/ })
|
|
|
|
mkdir -p build
|
|
rm -rf build/*
|
|
|
|
echo "Starting build..."
|
|
|
|
for platform in "${platforms[@]}"; do
|
|
GOOS=${platform%/*}
|
|
GOARCH=${platform#*/}
|
|
echo "Building $GOOS/$GOARCH"
|
|
output="build/hysteria-$GOOS-$GOARCH"
|
|
if [ $GOOS = "windows" ]; then
|
|
output="$output.exe"
|
|
fi
|
|
env GOOS=$GOOS GOARCH=$GOARCH CGO_ENABLED=0 go build -o $output -tags=gpl -ldflags "$ldflags" -trimpath ./cmd/
|
|
if [ $? -ne 0 ]; then
|
|
echo "Error: failed to build $GOOS/$GOARCH"
|
|
exit 1
|
|
fi
|
|
done
|
|
|
|
echo "Build complete."
|
|
|
|
ls -lh build/ | awk '{print $9, $5}'
|