summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml21
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