X-Git-Url: https://git.lukelau.me/?a=blobdiff_plain;f=.travis.yml;h=acea78cbd644c4e88a900cba9b77453ee2d79195;hb=229a185c7f2bfe8778feda0a71706d3a12f335b3;hp=023236dffb40743879a4ec475a8e570928050108;hpb=bf94a6e6874dc58734aa56391ce058cba870dc25;p=lsp-test.git diff --git a/.travis.yml b/.travis.yml index 023236d..acea78c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,40 +1,47 @@ -# language: haskell -# ghc: -# - "8.2.2" -# - "8.4.2" language: c sudo: false -# Caching so the next build will be fast too. +os: +- windows +- linux +- osx + cache: directories: + - .stack-work - $HOME/.stack - - $HOME/haskell-ide-engine + - $HOME/haskell-ide-engine/.stack-work + - C:/Users/travis/AppData/Local/Programs/stack + - C:/sr + timeout: 1000 addons: apt: packages: + - haskell-stack + - npm + update: true + homebrew: + packages: + - haskell-stack - 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' - - - cd $HOME - # It's ok to fail - - git clone https://github.com/haskell/haskell-ide-engine.git --recursive || true - - cd haskell-ide-engine - - git pull + - if [[ "$TRAVIS_OS_NAME" == "windows" ]]; then choco install haskell-stack nodejs; fi + - 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 f5c903f31ef5a7ee75984faf2e6ccc0a06ab23eb + - git submodule init - git submodule sync - - git submodule update - # - cabal new-update - # - cabal new-configure - # - cabal new-build - # - export PATH=$HOME/haskell-ide-engine/dist-newstyle/build/*/ghc-*/haskell-ide-engine-*/x/hie/build:$PATH - - stack --no-terminal --skip-ghc-check install -j2 + - git submodule update --init + - stack setup --silent # prevent windows logging vommit + - stack --no-terminal --skip-ghc-check -j2 install - stack exec hoogle generate - cd $TRAVIS_BUILD_DIR - npm update @@ -42,5 +49,3 @@ before_install: script: - stack test - # - cabal configure --enable-tests - # - cabal test -j2 --show-details=streaming