Skip to content

Commit babe125

Browse files
committed
Add 8.10.2 to github actions build
1 parent cd1b544 commit babe125

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
strategy:
1616
fail-fast: false
1717
matrix:
18-
ghc: ['8.10.1', '8.8.4', '8.8.3', '8.8.2', '8.6.5', '8.6.4']
18+
ghc: ['8.10.2', '8.10.1', '8.8.4', '8.8.3', '8.8.2', '8.6.5', '8.6.4']
1919
os: [ubuntu-latest, macOS-latest, windows-latest]
2020
exclude:
2121
- os: windows-latest
@@ -29,7 +29,7 @@ jobs:
2929
- uses: actions/checkout@v2
3030
with:
3131
submodules: true
32-
- uses: bubba/setup-haskell@d8110230d
32+
- uses: bubba/setup-haskell@7235984
3333
with:
3434
ghc-version: ${{ matrix.ghc }}
3535
cabal-version: '3.2'
@@ -94,11 +94,11 @@ jobs:
9494
path: ${{ steps.compress_server_binary.outputs.path }}
9595

9696
- name: Build Wrapper
97-
if: matrix.ghc == '8.10.1'
97+
if: matrix.ghc == '8.10.2'
9898
run: cabal build exe:hls-wrapper -O2 $LINUX_CABAL_ARGS
9999

100100
- name: Compress Wrapper Binary
101-
if: matrix.ghc == '8.10.1'
101+
if: matrix.ghc == '8.10.2'
102102
id: compress_wrapper_binary
103103
run: |
104104
HLS_WRAPPER_BUILD=$(find dist-newstyle \( -name 'hls-wrapper' -o -name 'hls-wrapper.exe' \) -type f)
@@ -117,7 +117,7 @@ jobs:
117117
fi
118118
119119
- name: Upload Wrapper
120-
if: matrix.ghc == '8.10.1'
120+
if: matrix.ghc == '8.10.2'
121121
uses: actions/upload-release-asset@v1.0.2
122122
env:
123123
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
@@ -128,7 +128,7 @@ jobs:
128128
asset_content_type: ${{ steps.compress_wrapper_binary.outputs.content_type}}
129129

130130
- uses: actions/upload-artifact@v2
131-
if: matrix.ghc == '8.10.1'
131+
if: matrix.ghc == '8.10.2'
132132
with:
133133
name: haskell-language-server-wrapper-${{ runner.OS }}${{env.EXE_EXT}}.${{ steps.compress_wrapper_binary.outputs.extension }}
134134
path: ${{ steps.compress_wrapper_binary.outputs.path }}

0 commit comments

Comments
 (0)