-
-
Notifications
You must be signed in to change notification settings - Fork 370
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix GitHub actions for build * Remove resolved comment * Rollback build wrapper version to use GHC 8.10.4
- Loading branch information
Showing
2 changed files
with
4 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -115,11 +115,11 @@ jobs: | |
path: ${{ steps.compress_server_binary.outputs.path }} | ||
|
||
- name: Build Wrapper | ||
if: matrix.ghc == '8.10.5' | ||
if: matrix.ghc == '8.10.4' | ||
run: cabal build exe:hls-wrapper -O2 $LINUX_CABAL_ARGS | ||
|
||
- name: Compress Wrapper Binary | ||
if: matrix.ghc == '8.10.5' | ||
if: matrix.ghc == '8.10.4' | ||
id: compress_wrapper_binary | ||
run: | | ||
HLS_WRAPPER_BUILD=$(find dist-newstyle \( -name 'hls-wrapper' -o -name 'hls-wrapper.exe' \) -type f) | ||
|
@@ -138,7 +138,7 @@ jobs: | |
fi | ||
- name: Upload Wrapper | ||
if: matrix.ghc == '8.10.5' | ||
if: matrix.ghc == '8.10.4' | ||
uses: actions/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
@@ -149,7 +149,7 @@ jobs: | |
asset_content_type: ${{ steps.compress_wrapper_binary.outputs.content_type}} | ||
|
||
- uses: actions/upload-artifact@v2 | ||
if: matrix.ghc == '8.10.5' | ||
if: matrix.ghc == '8.10.4' | ||
with: | ||
name: haskell-language-server-wrapper-${{ runner.OS }}${{env.EXE_EXT}}.${{ steps.compress_wrapper_binary.outputs.extension }} | ||
path: ${{ steps.compress_wrapper_binary.outputs.path }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters