use travis ci xenial build environment (#93)

Travis CI ships shellcheck with the xenial build environment. Using this avoids manually installing shellcheck every time and should speed things up.
This commit is contained in:
Sohalt 2018-11-08 18:38:03 +01:00 committed by Chris Down
parent 7de9c9e809
commit 71f4394b42

View file

@ -1,10 +1,6 @@
language: haskell language: bash
install: dist: xenial
- cabal install shellcheck
before_script:
- export PATH=$PATH:$HOME/.cabal/bin/
script: script:
- shellcheck -s bash clipmenu clipmenud - shellcheck -s bash clipmenu clipmenud
@ -12,7 +8,3 @@ script:
matrix: matrix:
fast_finish: true fast_finish: true
# Enable container based Travis CI infrastructure
# http://docs.travis-ci.com/user/migrating-from-legacy/
sudo: false