summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorChristian Rebischke <Chris.Rebischke@posteo.de>2017-08-21 18:19:09 +0200
committerGitHub <noreply@github.com>2017-08-21 18:19:09 +0200
commit309a8bb95bd59f01bd7a277ea8972591f715b9d9 (patch)
treee9bf120b147e4fee2938e1b4cc4a8022117cf510 /.travis.yml
parent1a81d3ab3db7de8127b8a23f2a99651cc75a50bd (diff)
parent14754c444c1c3f94dce0277885ce607da8337588 (diff)
downloadarch-boxes32-309a8bb95bd59f01bd7a277ea8972591f715b9d9.tar.xz
Merge pull request #23 from kBite/make-travis-validate-json
Make travis validate json
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml22
1 files changed, 22 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..d698deb
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,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