need git.... grumble grumble

This commit is contained in:
Hyatt 2022-03-17 16:58:26 -05:00
parent f012551b96
commit cfc719dae3
Signed by: nhyatt
GPG Key ID: C50D0BBB5BC40BEA

3
Jenkinsfile vendored
View File

@ -53,6 +53,9 @@ podTemplate(
stage("Build Binary") {
container("compile") {
sh """
if [ ! -f "/usr/bin/git" ] || [ ! -x "/usr/bin/git" ]; then
apk add --no-cache git
fi
apk add --no-cache gcc musl-dev upx
GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build -v -ldflags="-s -w" -tags timetzdata -o pihole-zone-generator ./cmd/bind
upx --lzma pihole-zone-generator