diff --git a/Jenkinsfile b/Jenkinsfile index 5034e03..c35b562 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -76,10 +76,13 @@ podTemplate( container('golang') { writeFile(file: workspace + "/test-chamber-13.lan.root.crt", text: functions.getLocalRootCA()) sh """ + if [ ! "/usr/bin/curl" ] || [ ! -x "/usr/bin/curl" ]; then + apk add --no-cache curl + fi if [ ! "/usr/bin/git" ] || [ ! -x "/usr/bin/git" ]; then apk add --no-cache git fi - apk add --no-cache curl gcc musl-dev + apk add --no-cache gcc musl-dev curl \ --silent \ --location \