changes build container to use correct package manager to install upx

This commit is contained in:
Hyatt 2022-03-14 14:12:11 -05:00
parent e5966eb030
commit 9eaa88b309
Signed by: nhyatt
GPG Key ID: C50D0BBB5BC40BEA

3
Jenkinsfile vendored
View File

@ -86,8 +86,7 @@ sonar.go.coverage.reportPaths=cover.out
stage("Build tplinkcmd") { stage("Build tplinkcmd") {
container("golang") { container("golang") {
sh """ sh """
apt-get update apk add --no-cache upx
apt-get install upx -y
go install -v ./... go install -v ./...
GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build -v -ldflags="-s -w" -tags timetzdata -o tplink ./cmd/tpstate GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build -v -ldflags="-s -w" -tags timetzdata -o tplink ./cmd/tpstate
upx --lzma tplink upx --lzma tplink