Skip to content

Upgrade to HLS 1.8.0.0 #9

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Sep 15, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions .github/workflows/workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ jobs:
strategy:
matrix:
include:
- { ghc: 9.0.2, hls: 1.7.0.0 }
- { ghc: 9.2.4, hls: '' }
- { ghc: 9.4.2, hls: '' }
- { ghc: 9.0.2 }
- { ghc: 9.2.4 }
- { ghc: 9.4.2 }
name: Docker with GHC ${{ matrix.ghc }}
runs-on: ubuntu-latest
steps:
Expand All @@ -31,7 +31,6 @@ jobs:
with:
build-args: |
GHC_VERSION=${{ matrix.ghc }}
HLS_VERSION=${{ matrix.hls }}
cache-from: type=gha
cache-to: type=gha,mode=max
labels: ${{ steps.meta.outputs.labels }}
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ RUN \

# Install GHC.

ARG GHC_VERSION=9.0.2
ARG GHC_VERSION=9.4.2
RUN \
set -o errexit -o xtrace; \
if test -n "$GHC_VERSION"; then \
Expand Down Expand Up @@ -85,7 +85,7 @@ RUN \

# Install HLS.

ARG HLS_VERSION=1.7.0.0
ARG HLS_VERSION=1.8.0.0
RUN \
set -o errexit -o xtrace; \
if test -n "$HLS_VERSION"; then \
Expand Down
1 change: 0 additions & 1 deletion README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,3 @@ This Docker image provides a Haskell development environment with the following
- [Cabal](https://www.haskell.org/cabal/)
- [Stack](https://docs.haskellstack.org/en/stable/README/)
- [HLS](https://haskell-language-server.readthedocs.io/en/latest/)
- Note that HLS is not available for all versions of GHC.