9e0424ec5e
Main version can be set in config/default_config.yml Build version need to be set by build command: go build -ldflags "-X main.buildversion=$(date -u +.%Y%m%d.%H%M%S)" Or by using package.sh Or by using the godep command: godep go build -ldflags "-X main.buildversion=$(date -u +.%Y%m%d.%H%M%S)"
21 lignes
803 o
Bash
Fichier exécutable
21 lignes
803 o
Bash
Fichier exécutable
#!/usr/bin/env bash
|
|
# Helper script to ease building binary packages for multiple targets.
|
|
# Requires the linux64 and mingw64 gcc compilers and zip.
|
|
# On Debian-based distros install mingw-w64.
|
|
|
|
version=$(git describe --tags)
|
|
declare -a OSes
|
|
OSes[0]='linux;x86_64-linux-gnu-gcc'
|
|
OSes[1]='windows;x86_64-w64-mingw32-gcc'
|
|
mkdir -p dist
|
|
|
|
for i in "${OSes[@]}"; do
|
|
arr=(${i//;/ })
|
|
os=${arr[0]}
|
|
cc=${arr[1]}
|
|
rm -f nyaa nyaa.exe
|
|
echo -e "\nBuilding $os..."
|
|
echo GOOS=$os GOARCH=amd64 CC=$cc CGO_ENABLED=1 go build -v -ldflags="-X main.buildversion=$(date -u +.%Y%m%d.%H%M%S)"
|
|
GOOS=$os GOARCH=amd64 CC=$cc CGO_ENABLED=1 go build -v -ldflags="-X main.buildversion=$(date -u +.%Y%m%d.%H%M%S)"
|
|
zip -9 -r dist/nyaa-${version}_${os}_amd64.zip os public templates service/user/locale *.md nyaa nyaa.exe
|
|
done
|