diff options
-rwxr-xr-x | jjb/fuel/fuel-build.sh | 2 | ||||
-rwxr-xr-x | jjb/fuel/fuel-deploy.sh | 4 |
2 files changed, 2 insertions, 4 deletions
diff --git a/jjb/fuel/fuel-build.sh b/jjb/fuel/fuel-build.sh index 3a041c546..178a50c68 100755 --- a/jjb/fuel/fuel-build.sh +++ b/jjb/fuel/fuel-build.sh @@ -1,6 +1,4 @@ #!/bin/bash - -#!/bin/bash set -o errexit set -o nounset set -o pipefail diff --git a/jjb/fuel/fuel-deploy.sh b/jjb/fuel/fuel-deploy.sh index 4d7a9b9c5..bb0e2b15f 100755 --- a/jjb/fuel/fuel-deploy.sh +++ b/jjb/fuel/fuel-deploy.sh @@ -7,7 +7,7 @@ set -o pipefail source latest.properties # echo the info about artifact that is used during the deployment -echo "Using $(echo $OPNFV_ARTIFACT_URL | cut -d'/' -f4) for deployment" +echo "Using $(echo $OPNFV_ARTIFACT_URL | cut -d'/' -f3) for deployment" # create TMPDIR if it doesn't exist export TMPDIR=$HOME/tmpdir @@ -24,7 +24,7 @@ export BRIDGE=pxebr # clone genesis repo and checkout the SR1 tag echo "Cloning genesis repo" cd $WORKSPACE -git clone https://gerrit.opnfv.org/gerrit/p/genesis.git genesis +GIT_SSL_NO_VERIFY=true git clone https://gerrit.opnfv.org/gerrit/genesis genesis cd genesis git checkout arno.2015.2.0 |