mirror of
https://github.com/typeable/bloodhound.git
synced 2025-01-08 07:48:48 +03:00
35 lines
995 B
Makefile
35 lines
995 B
Makefile
install-with-test-support:
|
|
cabal install --enable-tests
|
|
echo "Make certain you have an elasticsearch instance on localhost:9200 !"
|
|
cabal test
|
|
|
|
test:
|
|
echo "Make certain you have an elasticsearch instance on localhost:9200 !"
|
|
cabal clean
|
|
cabal test
|
|
|
|
build:
|
|
cabal build
|
|
|
|
test-repl:
|
|
cabal repl tests
|
|
|
|
repl:
|
|
cabal repl
|
|
|
|
reset:
|
|
rm -rf .cabal-sandbox
|
|
cabal sandbox init
|
|
|
|
haddock:
|
|
cabal haddock --hoogle --hyperlink-source --html-location='http://hackage.haskell.org/package/bloodhound/docs' --contents-location='http://hackage.haskell.org/package/bloodhound'
|
|
|
|
dist:
|
|
cabal sdist
|
|
|
|
# upload:
|
|
# cabal upload dist/bloodhound-0.1.0.2.tar.gz
|
|
# cp -R ./dist/doc/html/bloodhound/ bloodhound-0.1.0.2-docs
|
|
# tar cvzf --format=ustar -f bloodhound-0.1.0.1-docs.tar.gz bloodhound-0.1.0.1-docs
|
|
# curl -X PUT -H 'Content-Type: application/x-tar' -H 'Content-Encoding: gzip' --data-binary '@bloodhound-0.1.0.1-docs.tar.gz' 'https://bitemyapp:$PASSWORD@hackage.haskell.org/package/bloodhound-0.1.0.1/docs'
|