2022-10-20 12:37:50 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
set -eux
|
|
|
|
|
2023-01-14 13:00:32 +00:00
|
|
|
. .github/scripts/env.sh
|
2022-10-20 12:37:50 +00:00
|
|
|
|
|
|
|
mkdir -p "$CI_PROJECT_DIR"/.local/bin
|
|
|
|
|
|
|
|
git describe --always
|
|
|
|
|
|
|
|
### build
|
|
|
|
|
|
|
|
./scripts/bootstrap/bootstrap-haskell
|
|
|
|
|
|
|
|
[ "$(ghc --numeric-version)" = "${BOOTSTRAP_HASKELL_GHC_VERSION}" ]
|
2023-02-08 14:42:17 +00:00
|
|
|
# https://github.com/actions/runner-images/issues/7061
|
|
|
|
[ "$(ghcup config | grep --color=never meta-mode)" = "meta-mode: Lax" ]
|
2022-10-20 12:37:50 +00:00
|
|
|
|