golang needs to trust local ca for curl
This commit is contained in:
parent
f821161695
commit
ff64dab750
8
Jenkinsfile
vendored
8
Jenkinsfile
vendored
@ -42,9 +42,15 @@ podTemplate(
|
|||||||
|
|
||||||
stage('Run Tests') {
|
stage('Run Tests') {
|
||||||
container('golang') {
|
container('golang') {
|
||||||
|
writeFile(file: workspace + "/test-chamber-13.lan.root.crt", text: functions.getLocalRootCA())
|
||||||
sh """
|
sh """
|
||||||
apk add --no-cache curl
|
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}"
|
ln -s "${workspace}" "/go/src/${env.JOB_BASE_NAME}"
|
||||||
cd "/go/src/${env.JOB_BASE_NAME}"
|
cd "/go/src/${env.JOB_BASE_NAME}"
|
||||||
go get -d -v ./...
|
go get -d -v ./...
|
||||||
|
Loading…
x
Reference in New Issue
Block a user