ghcup-hs/.gitlab/before_script/darwin/install_deps.sh

15 lines
302 B
Bash
Raw Permalink Normal View History

2020-04-15 07:45:18 +00:00
#!/bin/sh
set -eux
. "$( cd "$(dirname "$0")" ; pwd -P )/../../ghcup_env"
curl -sSfL https://downloads.haskell.org/~ghcup/x86_64-apple-darwin-ghcup > ./ghcup-bin
chmod +x ghcup-bin
2020-04-15 07:45:18 +00:00
./ghcup-bin install ${GHC_VERSION}
./ghcup-bin set ${GHC_VERSION}
./ghcup-bin install-cabal ${CABAL_VERSION}
2020-04-15 07:45:18 +00:00
exit 0