summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: d698debafd9f2eff99833899a6cf095369ff3962 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
language: generic
dist: trusty
sudo: false

env:
  matrix:
  - DIST=trusty
  global:
    # 20170821: as of writing there is no 'latest' (hashicorp/packer/issues/5265)
  - 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