From 459086afc764b86564348ea38c365372052427a8 Mon Sep 17 00:00:00 2001 From: The_Spider Date: Thu, 17 Mar 2022 08:54:05 -0500 Subject: [PATCH] adds upx/git packages only if necessary --- Jenkinsfile | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index e4b4236..23241c1 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -75,6 +75,9 @@ podTemplate( container('golang') { writeFile(file: workspace + "/test-chamber-13.lan.root.crt", text: functions.getLocalRootCA()) sh """ + if [ ! "/usr/bin/git" ] || [ ! -x "/usr/bin/git" ]; then + apk add --no-cache git + fi apk add --no-cache curl gcc musl-dev curl \ --silent \ @@ -117,7 +120,12 @@ sonar.go.coverage.reportPaths=cover.out stage("Build tplinkcmd") { container("golang") { sh """ - apk add --no-cache upx + 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 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