blob: 4dd6fcc29d79fb03511c3f6fc7ec21c0a0c76bfb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
language: generic
dist: trusty
sudo: false
env:
matrix:
- DIST=trusty
global:
- PACKER_ZIP="packer_1.0.4_linux_amd64.zip"
- PACKER_URL="https://releases.hashicorp.com/packer/1.0.4/packer_1.0.4_linux_amd64.zip"
install:
- wget "${PACKER_URL}"
- unzip "${PACKER_ZIP}"
script:
- ./packer --version
- ./packer validate vagrant.json
notifications:
- email: false
|