X-Git-Url: http://git.lukelau.me/?a=blobdiff_plain;f=.travis.yml;h=60bd6eb039195bdce9e72e934fde5401ae3884e6;hb=88d77c7483e0497cf249db0e65e583ebe21dfbe2;hp=4a4730e7c75ed3751b8d7527d8a1118e1194eb7a;hpb=8a112a4c1522d031ad64af7b1e6310023f90997a;p=lsp-test.git diff --git a/.travis.yml b/.travis.yml index 4a4730e..60bd6eb 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,15 +1,19 @@ language: haskell - +dist: xenial ghc: - - "8.2.2" - - "8.4.2" + - "8.6.5" +cabal: "2.4" sudo: false -# Caching so the next build will be fast too. -# cache: -# directories: +cache: + directories: + - $HOME/.cabal + - $HOME/haskell-ide-engine/dist-newstyle + # - .stack-work # - $HOME/.stack + # - $HOME/haskell-ide-engine/.stack-work + timeout: 1000 addons: apt: @@ -17,21 +21,23 @@ addons: - npm before_install: - # Download and unpack the stack executable # - mkdir -p ~/.local/bin # - export PATH=$HOME/.local/bin:$PATH # - travis_retry curl -L https://get.haskellstack.org/stable/linux-x86_64.tar.gz | tar xz --wildcards --strip-components=1 -C ~/.local/bin '*/stack' + - mkdir -p haskell-ide-engine + - cd $HOME/haskell-ide-engine + - git init + - git remote add origin https://github.com/haskell/haskell-ide-engine.git + - git pull origin master + - git checkout abdb097f39e135deaf321a604c95f16cbda32678 + - git submodule update --init + - cabal v2-install hie + # - stack --no-terminal --skip-ghc-check -j2 install --fast + # - stack exec hoogle generate + - cabal v2-run hoogle generate + - cd $TRAVIS_BUILD_DIR - npm update - -install: - - git clone https://github.com/haskell/haskell-ide-engine.git --recursive - - cd haskell-ide-engine - - git submodule sync - - git submodule update - - stack --no-terminal --skip-ghc-check install -j2 - - stack exec hoogle generate - - cd .. - npm i -g javascript-typescript-langserver -# script: -# - stack --no-terminal --skip-ghc-check test +script: + - cabal v2-test