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

22 lines
418 B
Bash
Raw Normal View History

2021-05-14 21:09:45 +00:00
#!/bin/sh
set -eux
. "$( cd "$(dirname "$0")" ; pwd -P )/../../ghcup_env"
mkdir -p "${TMPDIR}" "${CABAL_DIR}"
2021-06-09 14:31:40 +00:00
mkdir -p "$GHCUP_INSTALL_BASE_PREFIX/ghcup/bin"
2021-05-14 21:09:45 +00:00
CI_PROJECT_DIR=$(pwd)
2021-08-14 15:10:48 +00:00
curl -o ghcup.exe https://downloads.haskell.org/~ghcup/x86_64-mingw64-ghcup.exe
2021-05-14 21:09:45 +00:00
chmod +x ghcup.exe
./ghcup.exe install ${GHC_VERSION}
./ghcup.exe set ${GHC_VERSION}
./ghcup.exe install-cabal ${CABAL_VERSION}
rm ./ghcup.exe
exit 0