# Przygotowanie | |
xcode-select --install # akceptacja licencji Xcode | |
curl -sSL https://get.haskellstack.org/ | sh # alternatywnie: brew install haskell-stack | |
git clone https://github.com/kgadek/novelist.git | |
cd novelist | |
stack setup # instalacja kompilatora lokalnie, w ~/.stack | |
stack build --bench --no-run-benchmarks # kompilacja programu | |
# Uruchamianie testów | |
stack bench | |
## czyszczenie systemu | |
rm /usr/local/bin/stack # alternatywnie: brew uninstall haskell-stack | |
rm -rf ~/.stack |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment