adds conditional to curl install

This commit is contained in:
Hyatt 2022-03-17 10:43:26 -05:00
parent 4eeab203fd
commit 296aed055e
Signed by: nhyatt
GPG Key ID: C50D0BBB5BC40BEA

5
Jenkinsfile vendored
View File

@ -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 \