mirror of
https://github.com/typeable/bloodhound.git
synced 2024-12-03 14:12:36 +03:00
27 lines
424 B
Makefile
27 lines
424 B
Makefile
build:
|
|
stack build
|
|
|
|
echo-warn:
|
|
echo "Make certain you have an elasticsearch instance on localhost:9200 !"
|
|
|
|
test: echo-warn
|
|
stack test
|
|
|
|
7.8-build:
|
|
STACK_YAML="stack-7.8.yaml" stack build
|
|
|
|
7.8-test: echo-warn
|
|
STACK_YAML="stack-7.8.yaml" stack test
|
|
|
|
8.0-build:
|
|
STACK_YAML="stack-8.0.yaml" stack build
|
|
|
|
8.0-test: echo-warn
|
|
STACK_YAML="stack-8.0.yaml" stack test
|
|
|
|
ghci:
|
|
stack ghci
|
|
|
|
upload:
|
|
stack upload --no-signature .
|