Try out v2 builds again
[lsp-test.git] / .travis.yml
index 3b57dbab2c33ca137a76a65911c0d708c3009134..60bd6eb039195bdce9e72e934fde5401ae3884e6 100644 (file)
@@ -1,11 +1,19 @@
-language: javascript
+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
 
 addons:
   apt:
@@ -13,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 ~/.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 checkout c34c08eeced8173983601e98304258075f3057e1
-  - 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
+  - cabal v2-test