UPX breaks binary :(

This commit is contained in:
Hyatt 2022-03-18 09:57:16 -05:00
parent 38ff59f2b8
commit 3b89fbc454
Signed by: nhyatt
GPG Key ID: C50D0BBB5BC40BEA

4
Jenkinsfile vendored
View File

@ -92,13 +92,9 @@ sonar.go.coverage.reportPaths=cover.out
if [ ! "/usr/bin/git" ] || [ ! -x "/usr/bin/git" ]; then
apk add --no-cache git
fi
if [ ! "/usr/bin/upx" ] || [ ! -x "/usr/bin/upx" ]; then
apk add --no-cache upx
fi
apk add --no-cache libusb-dev gcc g++ musl-dev pkgconfig
go install -v ./...
GOOS=linux GOARCH=amd64 go build -v -ldflags="-s -w" -tags timetzdata -o go-temper ./cmd/go-temper
upx --lzma go-temper
"""
}
}