X-Git-Url: https://gerrit.linuxfoundation.org/infra/gitweb?a=blobdiff_plain;f=.jjb-test%2Fexpected-xml%2Fgerrit-ciman-packer-verify;h=b27b0d0a25e3cf7b4fc51464201047cba6940fd5;hb=refs%2Fchanges%2F88%2F6988%2F1;hp=04a3f527a51d395fb41a445b9ce04d98ba2897d8;hpb=0ea33652f2dbed50a617fc62a80d1df9d56fb3ae;p=releng%2Fglobal-jjb.git diff --git a/.jjb-test/expected-xml/gerrit-ciman-packer-verify b/.jjb-test/expected-xml/gerrit-ciman-packer-verify index 04a3f527..b27b0d0a 100644 --- a/.jjb-test/expected-xml/gerrit-ciman-packer-verify +++ b/.jjb-test/expected-xml/gerrit-ciman-packer-verify @@ -76,7 +76,7 @@ For example '<1.0.0' or '>=1.0.0,<2.0.0'. PACKER_VERSION Packer version to download and install. - 1.0.2 + 1.1.1 @@ -140,15 +140,15 @@ For example '<1.0.0' or '>=1.0.0,<2.0.0'. ANT - packer/vars/['centos', 'ubuntu1604'].json + packer/vars/**.json ANT - packer/templates/['java-builder', 'mininet'].json + packer/templates/**.json ANT - packer/provision/['java-builder', 'mininet'].sh + packer/provision/**.sh ANT @@ -176,7 +176,7 @@ For example '<1.0.0' or '>=1.0.0,<2.0.0'. false - false + true false false @@ -207,7 +207,7 @@ For example '<1.0.0' or '>=1.0.0,<2.0.0'. - PACKER_VERSION=1.0.2 + PACKER_VERSION=1.1.1 @@ -232,16 +232,14 @@ PACKER_VERSION="${PACKER_VERSION:-1.0.2}" # Ensure we fail the job if any steps fail. set -eu -o pipefail -# Default packer binary made available on the build image -packer_bin="/usr/local/bin/packer.io" -if hash "$packer_bin" 2>/dev/null; then +if hash packer.io 2>/dev/null; then echo "packer.io command is available." else echo "packer.io command not is available. Installing packer ..." # Installs Hashicorp's Packer binary, required for verify & merge packer jobs pushd packer - wget "https://releases.hashicorp.com/packer/${PACKER_VERSION}/packer_${PACKER_VERSION}_linux_amd64.zip" + wget -nv "https://releases.hashicorp.com/packer/${PACKER_VERSION}/packer_${PACKER_VERSION}_linux_amd64.zip" mkdir -p "${WORKSPACE}/bin" unzip "packer_${PACKER_VERSION}_linux_amd64.zip" -d ${WORKSPACE}/bin/ # rename packer to avoid conflict with binary in cracklib