Compare commits

...

2 Commits

Author SHA1 Message Date
Michael Walker
3f39f1a34f
Merge pull request #375 from barrucadu/concourse
Use `--install-ghc` in concourse script
2022-12-31 20:42:28 +00:00
Michael Walker
292368b855
Use --install-ghc in concourse script
Looks like the default is to not install GHC now:

    + stack --no-terminal setup
    The --no-install-ghc flag is inconsistent with 'stack setup'. No
    action taken.
2022-12-31 20:14:18 +00:00

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}
###############################################################################