File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -280,7 +280,7 @@ pipeline {
280
280
sh '''
281
281
sudo yum install -y https://repo.percona.com/yum/percona-release-latest.noarch.rpm || true
282
282
sudo percona-release enable-only tools
283
- sudo yum install -y jq | true
283
+ sudo yum install -y | true
284
284
285
285
if [ ! -d $HOME/google-cloud-sdk/bin ]; then
286
286
rm -rf $HOME/google-cloud-sdk
@@ -298,8 +298,10 @@ pipeline {
298
298
curl -s -L https://github.com/mitchellh/golicense/releases/latest/download/golicense_0.2.0_linux_x86_64.tar.gz \
299
299
| sudo tar -C /usr/local/bin --wildcards -zxvpf -
300
300
301
- sudo sh -c "curl -s -L https://github.com/mikefarah/yq/releases/download/v4.27.2 /yq_linux_amd64 > /usr/local/bin/yq"
301
+ sudo sh -c "curl -s -L https://github.com/mikefarah/yq/releases/download/v4.34.1 /yq_linux_amd64 > /usr/local/bin/yq"
302
302
sudo chmod +x /usr/local/bin/yq
303
+ sudo sh -c "curl -s -L https://github.com/stedolan/jq/releases/download/jq-1.6/jq-linux64 > /usr/local/bin/jq"
304
+ sudo chmod +x /usr/local/bin/jq
303
305
'''
304
306
withCredentials([file(credentialsId : ' cloud-secret-file' , variable : ' CLOUD_SECRET_FILE' )]) {
305
307
sh '''
You can’t perform that action at this time.
0 commit comments