adds upx/git packages only if necessary
This commit is contained in:
parent
89f3122248
commit
459086afc7
8
Jenkinsfile
vendored
8
Jenkinsfile
vendored
@ -75,6 +75,9 @@ podTemplate(
|
|||||||
container('golang') {
|
container('golang') {
|
||||||
writeFile(file: workspace + "/test-chamber-13.lan.root.crt", text: functions.getLocalRootCA())
|
writeFile(file: workspace + "/test-chamber-13.lan.root.crt", text: functions.getLocalRootCA())
|
||||||
sh """
|
sh """
|
||||||
|
if [ ! "/usr/bin/git" ] || [ ! -x "/usr/bin/git" ]; then
|
||||||
|
apk add --no-cache git
|
||||||
|
fi
|
||||||
apk add --no-cache curl gcc musl-dev
|
apk add --no-cache curl gcc musl-dev
|
||||||
curl \
|
curl \
|
||||||
--silent \
|
--silent \
|
||||||
@ -117,7 +120,12 @@ sonar.go.coverage.reportPaths=cover.out
|
|||||||
stage("Build tplinkcmd") {
|
stage("Build tplinkcmd") {
|
||||||
container("golang") {
|
container("golang") {
|
||||||
sh """
|
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
|
apk add --no-cache upx
|
||||||
|
fi
|
||||||
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
|
||||||
|
Loading…
x
Reference in New Issue
Block a user