61e14313ac6739c6e7e5fc5fa3f0f762bef4820e
[releng/global-jjb.git] / shell / packer-validate.sh
1 #!/bin/bash
2 # SPDX-License-Identifier: EPL-1.0
3 ##############################################################################
4 # Copyright (c) 2017 The Linux Foundation and others.
5 #
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.
13
14 # $CLOUDENV            :  Provides the cloud credential file.
15
16 # Ensure we fail the job if any steps fail.
17 set -eu -o pipefail
18
19 PACKER_LOGS_DIR="$WORKSPACE/archives/packer"
20 mkdir -p "$PACKER_LOGS_DIR"
21 export PATH="${WORKSPACE}/bin:$PATH"
22
23 cd packer
24 varfiles=(vars/*.json common-packer/vars/*.json)
25 templates=(templates/*.json)
26
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. Also handle the case where a project
30     # has not vars/*.json file.
31     if [[ "$varfile" == *"cloud-env.json"* ]] || [[ "$varfile" == 'vars/*.json' ]]; then
32         continue
33     fi
34
35     echo "-----> Testing varfile: $varfile"
36     for template in "${templates[@]}"; do
37         export PACKER_LOG="yes"
38         export PACKER_LOG_PATH="$PACKER_LOGS_DIR/packer-validate-${varfile##*/}-${template##*/}.log"
39         if output=$(packer.io validate -var-file="$CLOUDENV" -var-file="$varfile" "$template"); then
40             echo "$template: $output"
41         else
42             echo "$template: $output"
43             exit 1
44         fi
45     done
46 done