adds upx/git packages only if necessary

This commit is contained in:
Hyatt 2022-03-17 08:54:05 -05:00
parent 89f3122248
commit 459086afc7
Signed by: nhyatt
GPG Key ID: C50D0BBB5BC40BEA

8
Jenkinsfile vendored
View File

@ -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 """
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