try to statically link binary.
This commit is contained in:
parent
3b89fbc454
commit
33527c4bea
6
Jenkinsfile
vendored
6
Jenkinsfile
vendored
@ -92,9 +92,13 @@ sonar.go.coverage.reportPaths=cover.out
|
|||||||
if [ ! "/usr/bin/git" ] || [ ! -x "/usr/bin/git" ]; then
|
if [ ! "/usr/bin/git" ] || [ ! -x "/usr/bin/git" ]; then
|
||||||
apk add --no-cache git
|
apk add --no-cache git
|
||||||
fi
|
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
|
apk add --no-cache libusb-dev gcc g++ musl-dev pkgconfig
|
||||||
go install -v ./...
|
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
|
||||||
"""
|
"""
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user