diff options
author | Kilian Engelhardt <kilian.engelhardt@godaddy.com> | 2017-08-21 12:08:24 +0200 |
---|---|---|
committer | Kilian Engelhardt <kilian.engelhardt@godaddy.com> | 2017-08-21 12:08:24 +0200 |
commit | 99062dcf233ec379675a648b82f99e296c237a26 (patch) | |
tree | 6727b85a9e5dc9b9d2606fc008c7394a69323b68 | |
parent | ca56eb52197a2cc944def9f51f761fa68d91362c (diff) | |
download | arch-boxes32-99062dcf233ec379675a648b82f99e296c237a26.tar.xz |
add travis file to validate vagrant.json
-rw-r--r-- | .travis.yml | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..4dd6fcc --- /dev/null +++ b/.travis.yml @@ -0,0 +1,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 |