Try out v2 builds again
[lsp-test.git] / .travis.yml
index 8305980fa916bc0f18b9c553bbeb62a54ed8ac94..60bd6eb039195bdce9e72e934fde5401ae3884e6 100644 (file)
@@ -1,24 +1,43 @@
-language: c
+language: haskell
+dist: xenial
+ghc:
+  - "8.6.5"
+cabal: "2.4"
 
 sudo: false
 
-# Caching so the next build will be fast too.
 cache:
   directories:
-  - $HOME/.stack
+    - $HOME/.cabal
+    - $HOME/haskell-ide-engine/dist-newstyle
+    # - .stack-work
+    # - $HOME/.stack
+    # - $HOME/haskell-ide-engine/.stack-work
+  timeout: 1000
 
-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'
+addons:
+  apt:
+    packages:
+      - npm
 
-install:
-  - git clone https://github.com/haskell/haskell-ide-engine.git --recursive
-  - cd haskell-ide-engine
-  - stack --no-terminal --skip-ghc-check install -j1
-  - stack exec hoogle generate
-  - cd ..
+before_install:
+  # - 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
+  - npm i -g javascript-typescript-langserver
 
 script:
-  - stack --no-terminal --skip-ghc-check test
+  - cabal v2-test