From 71f4394b4251972c4daecf24888038a4f423e83f Mon Sep 17 00:00:00 2001 From: Sohalt Date: Thu, 8 Nov 2018 18:38:03 +0100 Subject: [PATCH] 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. --- .travis.yml | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/.travis.yml b/.travis.yml index 6b793dd..d2c7146 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,10 +1,6 @@ -language: haskell +language: bash -install: - - cabal install shellcheck - -before_script: - - export PATH=$PATH:$HOME/.cabal/bin/ +dist: xenial script: - shellcheck -s bash clipmenu clipmenud @@ -12,7 +8,3 @@ script: matrix: fast_finish: true - -# Enable container based Travis CI infrastructure -# http://docs.travis-ci.com/user/migrating-from-legacy/ -sudo: false