haskell-CI / haskell-ci

Scripts and instructions for using CI services (e.g. Travis CI or Appveyor) with multiple GHC configurations

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Support GHC alpha releases

bergmark opened this issue · comments

It would be great if it was easy to add GHC alpha's to haskell-ci builds.

I got this working for haskell-src-meta by:

            "$HOME/.ghcup/bin/ghcup" upgrade
            "$HOME/.ghcup/bin/ghcup" config add-release-channel https://raw.githubusercontent.com/haskell/ghcup-metadata/master/ghcup-prereleases-0.0.7.yaml

Yes, we can add these in dev versions. I would prefer to not keep alpha versions around in released haskell-ci version though, as they have little value after proper GHC version is released.

How should dev versions be managed? A separate branch in this repo?

Wow, thanks @phadej!!