Skip to content

Commit

Permalink
check compatibility with GHC prereleases
Browse files Browse the repository at this point in the history
This unnecessarily runs even when a prerelease isn't active, but
if it fails then then we have bigger problems (like we do right
now with a buggy 3.14.1.0 released).
  • Loading branch information
geekosaur committed Dec 23, 2024
1 parent 56594bd commit 39c8d78
Showing 1 changed file with 66 additions and 0 deletions.
66 changes: 66 additions & 0 deletions .github/workflows/ghc-prereleases.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
name: Check GHC prereleases

# See: https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#concurrency.
concurrency:
group: ${{ github.ref }}-${{ github.workflow }}
cancel-in-progress: true

on:
push:
branches:
- master
pull_request:
release:
types:
- created

jobs:

# Make sure we support the latest prerelease GHC. This means validating that Cabal doesn't
# output a warning that the GHC is too new.
#
# It's generally pointless to run this when not around a release, but there's no good way
# to automate checking for that so we just run pointlessly. (If it doesn't succeed, we have
# bigger problems.)

ghc-prerelease:
name: Check compatibility with latest GHC prerelease
runs-on: ubuntu-latest

steps:

# install both ghc versions (release and prerelease)
# setup overwrites ghc, so we have to do this first *and* use the ghc-path output
# (not ghc-exe, which points to the overwritten ghc which is usually the wrong one)
- uses: haskell-actions/setup@v2
name: prerelease-ghc
with:
ghc-version: latest-prerelease
ghcup-release-channel: "https://raw.githubusercontent.com/haskell/ghcup-metadata/master/ghcup-prereleases-0.0.8.yaml"

- uses: haskell-actions/setup@v2
id: release-ghc
with:
# NOTE: for CI rewrite, use GHC_FOR_RELEASE
ghc-version: "9.4.8"
cabal-version: latest

# first, build cabal-install
- uses: actions/checkout@v4

# use the release project to silence the prerelease warning, to make
# checking for the too-new-GHC warning easier
- run: cabal build cabal --project-file=cabal.release.project -w ${{ steps.release-ghc.outputs.ghc-path }}/ghc

# dry run build of Cabal with the prerelease
# if there is a problem, the first two lines of the output will be a warning
- run: $(cabal list-bin cabal -w ${{ steps.release-ghc.outputs.ghc-path }}/ghc) build Cabal --dry-run -w ${{ steps.prerelease-ghc.outputs.ghc-path }}/ghc 2>&1 | tee build.log
shell: bash

- run: |
if grep -q unknown/unsupported build.log; then
echo Cabal does not support latest GHC prerelease
exit 1
fi
exit 0
shell: bash

0 comments on commit 39c8d78

Please sign in to comment.