Merge pull request #375 from barrucadu/concourse

Use `--install-ghc` in concourse script
This commit is contained in:
Michael Walker 2022-12-31 20:42:28 +00:00 committed by GitHub
commit 3f39f1a34f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -37,7 +37,7 @@ x-task-build-and-test: &task-build-and-test
$stack init --resolver="$resolver" --force
fi
$stack setup
$stack setup --install-ghc
$stack build
$stack exec dejafu-tests
@ -104,7 +104,7 @@ x-task-release: &task-release
exit 0
fi
stack --no-terminal setup
stack --no-terminal setup --install-ghc
echo n | stack --no-terminal upload ${PACKAGE}
###############################################################################