Skip to content
This repository was archived by the owner on Oct 7, 2020. It is now read-only.

Add 8.4.4 to the Windows-friendly make script #931

Merged
merged 2 commits into from
Nov 9, 2018
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
1 change: 1 addition & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
version: 1.0.{build}
environment:
matrix:
- GHCVER: 8.4.4
- GHCVER: 8.4.3
- GHCVER: 8.4.2
- GHCVER: 8.2.2
Expand Down
9 changes: 9 additions & 0 deletions make-build-all.bat
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ CALL :hie-8.2.1
CALL :hie-8.2.2
CALL :hie-8.4.2
CALL :hie-8.4.3
CALL :hie-8.4.4
EXIT /B

:hie-8.2.1
Expand Down Expand Up @@ -49,6 +50,13 @@ COPY "%STACKLOCALBINDIR%\hie.exe" "%STACKLOCALBINDIR%\hie-8.4.3.exe"
COPY "%STACKLOCALBINDIR%\hie-8.4.3.exe" "%STACKLOCALBINDIR%\hie-8.4.exe"
EXIT /B

:hie-8.4.4
CALL :submodules
stack --stack-yaml=stack-8.4.4.yaml install
COPY "%STACKLOCALBINDIR%\hie.exe" "%STACKLOCALBINDIR%\hie-8.4.4.exe"
COPY "%STACKLOCALBINDIR%\hie-8.4.4.exe" "%STACKLOCALBINDIR%\hie-8.4.exe"
EXIT /B

:submodules
git submodule update --init
EXIT /B
Expand All @@ -58,4 +66,5 @@ stack --stack-yaml=stack-8.2.1.yaml exec hoogle generate
stack --stack-yaml=stack-8.2.2.yaml exec hoogle generate
stack --stack-yaml=stack-8.4.2.yaml exec hoogle generate
stack --stack-yaml=stack-8.4.3.yaml exec hoogle generate
stack --stack-yaml=stack-8.4.4.yaml exec hoogle generate
EXIT /B