Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
59 changes: 7 additions & 52 deletions .github/workflows/debian.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ jobs:
strategy:
fail-fast: false
matrix:
ghc: ['9.12.2', '9.10.1', '9.8.4', '9.6.7', '9.4.8', '9.2.8', '9.0.2']
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Removing all older GHCs from here, as those only have Buster based images that no longer build.

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Um, you could still use older bindists on newer debian. Worked for aarch64 before, must work for x86_64. anyway, it's beyond the scope of this PR

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think most of the haskell community is on ghc 9.6.7+.
I would prefer not adding older GHCs with newer debians unless there's popular demand for it.

deb: ['buster', 'slim-buster']
ghc: ['9.12.2', '9.10.1', '9.8.4', '9.6.7']
deb: ['bullseye', 'slim-bullseye']
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Since Buster is no longer buildable, switching the "default" debian to the next release which is still supported.

include:
- ghc: '9.12.2'
ghc_minor: '9.12'
Expand All @@ -37,39 +37,15 @@ jobs:
deb: 'slim-bookworm'
- ghc: '9.10.1'
ghc_minor: '9.10'
deb: 'slim-bullseye'
- ghc: '9.10.1'
ghc_minor: '9.10'
deb: 'bullseye'
- ghc: '9.10.1'
ghc_minor: '9.10'
- ghc: '9.8.4'
ghc_minor: '9.8'
deb: 'slim-bullseye'
- ghc: '9.8.4'
ghc_minor: '9.8'
deb: 'bullseye'
- ghc: '9.8.4'
ghc_minor: '9.8'
- ghc: '9.6.7'
ghc_minor: '9.6'
deb: 'slim-bullseye'
- ghc: '9.6.7'
ghc_minor: '9.6'
deb: 'bullseye'
- ghc: '9.6.7'
ghc_minor: '9.6'
- ghc: '9.4.8'
ghc_minor: '9.4'
- ghc: '9.2.8'
ghc_minor: '9.2'
- ghc: '9.0.2'
ghc_minor: '9.0'
exclude:
- ghc: '9.12.2'
deb: 'buster'
deb: 'bullseye'
- ghc: '9.12.2'
deb: 'slim-buster'
deb: 'slim-bullseye'
steps:
- uses: actions/checkout@v4
- name: build + smoke test [${{ matrix.ghc }}]
Expand All @@ -96,9 +72,9 @@ jobs:
strategy:
fail-fast: false
matrix:
ghc: ['9.0.2', '9.2.8', '9.4.8', '9.6.7', '9.8.4', '9.10.1', '9.12.2']
ghc: ['9.6.7', '9.8.4', '9.10.1', '9.12.2']
# uraimo/run-on-arch-action does not support debian slim variants
deb: ['buster']
deb: ['bullseye']
arch: ['aarch64']
include:
# bookworm (debian 12)
Expand All @@ -110,37 +86,16 @@ jobs:
# bullseye (debian 11)
- ghc: '9.10.1'
ghc_minor: '9.10'
deb: 'bullseye'
arch: 'aarch64'
docker_platform: arm64
- ghc: '9.8.4'
ghc_minor: '9.8'
deb: 'bullseye'
arch: 'aarch64'
docker_platform: arm64
- ghc: '9.6.7'
ghc_minor: '9.6'
deb: 'bullseye'
arch: 'aarch64'
docker_platform: arm64
# buster (debian 10)
- ghc: '9.10.1'
ghc_minor: '9.10'
- ghc: '9.8.4'
ghc_minor: '9.8'
- ghc: '9.6.7'
ghc_minor: '9.6'
- ghc: '9.4.8'
ghc_minor: '9.4'
- ghc: '9.2.8'
ghc_minor: '9.2'
- ghc: '9.0.2'
ghc_minor: '9.0'
- arch: aarch64
docker_platform: arm64
exclude:
- ghc: '9.12.2'
deb: 'buster'
deb: 'bullseye'

steps:
- uses: actions/checkout@v4
Expand Down