From 9eaa88b309ef03d283a5478996097e9d03e38aad Mon Sep 17 00:00:00 2001 From: The_Spider Date: Mon, 14 Mar 2022 14:12:11 -0500 Subject: [PATCH] changes build container to use correct package manager to install upx --- Jenkinsfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 9695ba8..5760440 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -86,8 +86,7 @@ sonar.go.coverage.reportPaths=cover.out stage("Build tplinkcmd") { container("golang") { sh """ - apt-get update - apt-get install upx -y + apk add --no-cache upx go install -v ./... GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build -v -ldflags="-s -w" -tags timetzdata -o tplink ./cmd/tpstate upx --lzma tplink