X-Git-Url: https://git.lukelau.me/?a=blobdiff_plain;f=.github%2Fworkflows%2Fhaskell.yml;h=0e23fd4ee1cb045af939af712fa5068eb8abd84a;hb=1dcc5d9ce4ade0accceafc52c73d66533d343685;hp=70ee98a2135ac2c5bce4be129cfaa1c687b19c97;hpb=5852fb5aa22b2d9cada2451447909edca5ce5951;p=lsp-test.git diff --git a/.github/workflows/haskell.yml b/.github/workflows/haskell.yml index 70ee98a..0e23fd4 100644 --- a/.github/workflows/haskell.yml +++ b/.github/workflows/haskell.yml @@ -7,12 +7,15 @@ jobs: runs-on: ${{ matrix.os }} env: - hieref: cd0d1eb88334c359b8a220f2aebec703d66012ff + hieref: 35f62cffb6bae6c3f86113cb0c55f52b7192689d strategy: matrix: - ghc: ['8.6.5'] + ghc: ['8.6.5', '8.4.4'] os: [ubuntu-latest, macOS-latest] + exclude: + - os: macOS-latest + ghc: '8.4.4' # fails due to ghc panic steps: - uses: actions/checkout@v1 @@ -25,37 +28,43 @@ jobs: - name: Clone HIE uses: actions/checkout@v1 with: - repository: mpickering/haskell-ide-engine + repository: haskell/haskell-ide-engine submodules: recursive ref: ${{ env.hieref }} path: haskell-ide-engine - # - name: Cache Cabal - # uses: actions/cache@v1 - # with: - # path: ~/.cabal - # key: ${{ runner.OS }}-${{ matrix.ghc }}-cabal-${{ hashFiles('../**/*.cabal') }} - # restore-keys: | - # ${{ runner.OS }}-${{ matrix.ghc }}-cabal + - name: Cache Cabal + uses: actions/cache@v1.1.0 + with: + path: ~/.cabal + key: ${{ runner.OS }}-${{ matrix.ghc }}-cabal-${{ env.hieref }} + restore-keys: | + ${{ runner.OS }}-${{ matrix.ghc }}-cabal + + - name: Cache Hoogle + uses: actions/cache@v1.1.0 + with: + path: ~/.hoogle + key: ${{ runner.OS }}-${{ matrix.ghc }}-hoogle-${{ env.hieref }} - name: Build HIE run: | - # if [ -e $HOME/.cabal/bin/hie ]; then - # echo "hie is already built" - # exit 0 - # fi pushd ../haskell-ide-engine cabal install hie cabal install hoogle - hoogle generate popd + - name: Generate hoogle database + run: | + if [ -d $HOME/.hoogle ]; then + echo "hoogle database already built" + exit 0 + fi + hoogle generate - name: Install JS Language Server - run: npm install -g javascript-typescript-langserver + run: npm install javascript-typescript-langserver - name: Build run: cabal build - name: Test run: | - echo $PATH - echo $(npm bin) export PATH=$PATH:$(npm bin) cabal test