corrects apt command

This commit is contained in:
Hyatt 2022-01-09 09:53:07 -06:00
parent cfb53b374e
commit 90caa81998
Signed by: nhyatt
GPG Key ID: C50D0BBB5BC40BEA

4
Jenkinsfile vendored
View File

@ -65,8 +65,8 @@ spec:
stage("Build tplinkcmd") { stage("Build tplinkcmd") {
container("compile") { container("compile") {
sh """ sh """
apt update apt-get update
apt install upx -y 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