2 # SPDX-License-Identifier: EPL-1.0
3 ##############################################################################
4 # Copyright (c) 2017 The Linux Foundation and others.
6 # All rights reserved. This program and the accompanying materials
7 # are made available under the terms of the Eclipse Public License v1.0
8 # which accompanies this distribution, and is available at
9 # http://www.eclipse.org/legal/epl-v10.html
10 ##############################################################################
11 echo "---> packer-validate.sh"
12 # The script validates an packers files.
14 # $CLOUDENV : Provides the cloud credential file.
16 # Ensure we fail the job if any steps fail.
19 PACKER_LOGS_DIR="$WORKSPACE/archives/packer"
20 mkdir -p "$PACKER_LOGS_DIR"
21 export PATH="${WORKSPACE}/bin:$PATH"
24 varfiles=(vars/*.json common-packer/vars/*.json)
25 templates=(templates/*.json)
27 for varfile in "${varfiles[@]}"; do
28 # cloud-env.json is a file containing credentials which is pulled in via
29 # CLOUDENV variable so skip it here.
30 if [[ "$varfile" == *"cloud-env.json"* ]]; then
34 echo "-----> Testing varfile: $varfile"
35 for template in "${templates[@]}"; do
36 export PACKER_LOG="yes"
37 export PACKER_LOG_PATH="$PACKER_LOGS_DIR/packer-validate-${varfile##*/}-${template##*/}.log"
38 if output=$(packer.io validate -var-file="$CLOUDENV" -var-file="$varfile" "$template"); then
39 echo "$template: $output"
41 echo "$template: $output"