blob: a5427ce06d37f994bd4dbd67ff9e2db83cc37c3c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
---
# vim: sw=2 ts=2 sts=2 et :
- builder:
name: packer-validate
builders:
- config-file-provider:
files:
- file-id: 'packer-cloud-env'
variable: 'CLOUDENV'
- shell: |
cd packer
export PACKER_LOG="yes"
export PACKER_LOG_PATH="packer-validate.log"
packer.io validate -var-file=$CLOUDENV \
-var-file=vars/{platform}.json \
templates/{template}.json
- builder:
name: packer-build
builders:
- shell: |
cd packer
export PACKER_LOG="yes"
export PACKER_LOG_PATH="packer-validate.log"
packer.io build -color=false \
-var-file=$CLOUDENV \
-var-file=vars/{platform}.json \
templates/{template}.json
|