changes build image for non-compatable libraries

This commit is contained in:
Hyatt 2022-03-18 10:12:57 -05:00
parent 33527c4bea
commit 55df7d740d
Signed by: nhyatt
GPG Key ID: C50D0BBB5BC40BEA

22
Jenkinsfile vendored
View File

@ -17,9 +17,14 @@ podTemplate(
command: "/bin/sh"
],
[
name: "golang",
name: "golang-alpine",
path: "${repository}/dockerhub/library/golang:alpine",
command: "/bin/sh"
],
[
name: "golang-ubuntu",
path: "${repository}/dockerhub/library/golang:latest",
command: "/bin/sh"
]
]
)
@ -38,7 +43,7 @@ podTemplate(
}
stage('Run Tests') {
container('golang') {
container('golang-alpine') {
writeFile(file: workspace + "/test-chamber-13.lan.root.crt", text: functions.getLocalRootCA())
sh """
if [ ! "/usr/bin/curl" ] || [ ! -x "/usr/bin/curl" ]; then
@ -87,17 +92,20 @@ sonar.go.coverage.reportPaths=cover.out
}
stage("Build go-temper") {
container("golang") {
container("golang-ubuntu") {
sh """
apt update
apt install --yes --no-install-recommends libusb-1.0-0-dev gcc g++
if [ ! "/usr/bin/git" ] || [ ! -x "/usr/bin/git" ]; then
apk add --no-cache git
apt install --yes --no-install-recommends git
fi
if [ ! "/usr/bin/upx" ] || [ ! -x "/usr/bin/upx" ]; then
apk add --no-cache upx
apt install --yes --no-install-recommends upx
fi
apk add --no-cache libusb-dev gcc g++ musl-dev pkgconfig
ln -s "${workspace}" "/go/src/${env.JOB_BASE_NAME}"
cd "/go/src/${env.JOB_BASE_NAME}"
go install -v ./...
GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build -v -ldflags="-s -w" -tags timetzdata -o go-temper ./cmd/go-temper
GOOS=linux GOARCH=amd64 go build -v -ldflags="-s -w" -tags timetzdata -o go-temper ./cmd/go-temper
upx --lzma go-temper
"""
}