From 33527c4bea44d0ed1b32c81b504ace33fbb3f5ee Mon Sep 17 00:00:00 2001 From: The_Spider Date: Fri, 18 Mar 2022 10:04:25 -0500 Subject: [PATCH] try to statically link binary. --- Jenkinsfile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 69dcebd..e0e04ff 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -92,9 +92,13 @@ 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 + GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build -v -ldflags="-s -w" -tags timetzdata -o go-temper ./cmd/go-temper + upx --lzma go-temper """ } }