adds conditional to curl install
This commit is contained in:
parent
4eeab203fd
commit
296aed055e
5
Jenkinsfile
vendored
5
Jenkinsfile
vendored
@ -76,10 +76,13 @@ podTemplate(
|
|||||||
container('golang') {
|
container('golang') {
|
||||||
writeFile(file: workspace + "/test-chamber-13.lan.root.crt", text: functions.getLocalRootCA())
|
writeFile(file: workspace + "/test-chamber-13.lan.root.crt", text: functions.getLocalRootCA())
|
||||||
sh """
|
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
|
if [ ! "/usr/bin/git" ] || [ ! -x "/usr/bin/git" ]; then
|
||||||
apk add --no-cache git
|
apk add --no-cache git
|
||||||
fi
|
fi
|
||||||
apk add --no-cache curl gcc musl-dev
|
apk add --no-cache gcc musl-dev
|
||||||
curl \
|
curl \
|
||||||
--silent \
|
--silent \
|
||||||
--location \
|
--location \
|
||||||
|
Loading…
x
Reference in New Issue
Block a user