Skip to content
This repository was archived by the owner on Oct 7, 2020. It is now read-only.
Merged
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
12 changes: 9 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,8 @@ build-docs:
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.3.yaml exec hoogle generate \
&& stack --stack-yaml=stack-8.4.4.yaml exec hoogle generate
.PHONY: build-docs


Expand All @@ -79,14 +80,16 @@ test: submodules
stack --stack-yaml=stack-8.2.1.yaml test \
&& stack --stack-yaml=stack-8.2.2.yaml test \
&& stack --stack-yaml=stack-8.4.2.yaml test \
&& stack --stack-yaml=stack-8.4.3.yaml test
&& stack --stack-yaml=stack-8.4.3.yaml test \
&& stack --stack-yaml=stack-8.4.4.yaml test
.PHONY: test

build-copy-compiler-tool: submodules
stack --stack-yaml=stack-8.2.1.yaml build --copy-compiler-tool \
&& stack --stack-yaml=stack-8.2.2.yaml build --copy-compiler-tool \
&& stack --stack-yaml=stack-8.4.2.yaml build --copy-compiler-tool \
&& stack --stack-yaml=stack-8.4.3.yaml build --copy-compiler-tool
&& stack --stack-yaml=stack-8.4.3.yaml build --copy-compiler-tool \
&& stack --stack-yaml=stack-8.4.4.yaml build --copy-compiler-tool
.PHONY: build-copy-compiler-tool

## Fixes icu related problems in MacOS
Expand All @@ -108,6 +111,9 @@ icu-macos-fix-build:
--extra-lib-dirs=/usr/local/opt/icu4c/lib \
--extra-include-dirs=/usr/local/opt/icu4c/include \
&& stack --stack-yaml=stack-8.4.3.yaml build text-icu \
--extra-lib-dirs=/usr/local/opt/icu4c/lib \
--extra-include-dirs=/usr/local/opt/icu4c/include \
&& stack --stack-yaml=stack-8.4.4.yaml build text-icu \
--extra-lib-dirs=/usr/local/opt/icu4c/lib \
--extra-include-dirs=/usr/local/opt/icu4c/include
.PHONY: icu-macos-fix-build
Expand Down