X-Git-Url: http://git.lukelau.me/?a=blobdiff_plain;f=.github%2Fworkflows%2Fhaskell.yml;h=77048ed38d0d523c3f9284f692b3336baec8e85e;hb=9a3d9aa8eff636e07eec0d30a9191ab1e834ca3e;hp=53827ca27f8f334701613b953ff2c10aa8c95053;hpb=01da6135bd795edcf08c1462ce9925e9917df956;p=lsp-test.git diff --git a/.github/workflows/haskell.yml b/.github/workflows/haskell.yml index 53827ca..77048ed 100644 --- a/.github/workflows/haskell.yml +++ b/.github/workflows/haskell.yml @@ -1,22 +1,26 @@ name: Haskell CI -on: [push] +on: [push, pull_request] jobs: build: runs-on: ${{ matrix.os }} env: - hieref: cd0d1eb88334c359b8a220f2aebec703d66012ff + hieref: d9d21fb0675280e20e837dbeb5715dab65e9c6be strategy: + fail-fast: false matrix: - ghc: ['8.6.5'] - os: [ubuntu-latest, macOS-latest] + ghc: ['8.8.3', '8.6.5', '8.4.4'] + os: [ubuntu-latest, macOS-latest, windows-latest] + exclude: + - os: macOS-latest + ghc: '8.4.4' # fails due to ghc panic steps: - uses: actions/checkout@v1 - - uses: bubba/setup-haskell@macos-ghcup + - uses: actions/setup-haskell@v1.1 with: ghc-version: ${{ matrix.ghc }} cabal-version: '3.0' @@ -25,37 +29,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