golang needs to trust local ca for curl

This commit is contained in:
Hyatt 2022-03-14 14:05:47 -05:00
parent f821161695
commit ff64dab750
Signed by: nhyatt
GPG Key ID: C50D0BBB5BC40BEA

8
Jenkinsfile vendored
View File

@ -42,9 +42,15 @@ podTemplate(
stage('Run Tests') {
container('golang') {
writeFile(file: workspace + "/test-chamber-13.lan.root.crt", text: functions.getLocalRootCA())
sh """
apk add --no-cache curl
curl --silent --location https://nexus.c.test-chamber-13.lan/repository/github-releases/jstemmer/go-junit-report/releases/download/v1.0.0/go-junit-report-v1.0.0-linux-amd64.tar.gz | tar -z -x -f - -C /usr/local/bin
curl \
--silent \
--location \
--cacert "${workspace}/test-chamber-13.lan.root.crt" \
https://nexus.c.test-chamber-13.lan/repository/github-releases/jstemmer/go-junit-report/releases/download/v1.0.0/go-junit-report-v1.0.0-linux-amd64.tar.gz \
| tar -z -x -f - -C /usr/local/bin
ln -s "${workspace}" "/go/src/${env.JOB_BASE_NAME}"
cd "/go/src/${env.JOB_BASE_NAME}"
go get -d -v ./...