From 1404c3f2e754bee2de6f07d806075ffc29f8cbdb Mon Sep 17 00:00:00 2001 From: Totto16 Date: Wed, 29 Oct 2025 03:50:02 +0100 Subject: [PATCH] feat: bump ghc 9.10 to 9.10.3 --- .github/workflows/debian.yml | 8 ++++---- 9.10/bookworm.yaml | 10 +++++----- 9.10/bookworm/Dockerfile | 8 ++++---- 9.10/bullseye.yaml | 6 +++--- 9.10/bullseye/Dockerfile | 6 +++--- 9.10/slim-bookworm.yaml | 10 +++++----- 9.10/slim-bookworm/Dockerfile | 8 ++++---- 9.10/slim-bullseye.yaml | 6 +++--- 9.10/slim-bullseye/Dockerfile | 6 +++--- 9 files changed, 34 insertions(+), 34 deletions(-) diff --git a/.github/workflows/debian.yml b/.github/workflows/debian.yml index 222e4166..a509cf45 100644 --- a/.github/workflows/debian.yml +++ b/.github/workflows/debian.yml @@ -26,7 +26,7 @@ jobs: strategy: fail-fast: false matrix: - ghc: ['9.12.2', '9.10.2', '9.8.4', '9.6.7'] + ghc: ['9.12.2', '9.10.3', '9.8.4', '9.6.7'] deb: ['bullseye', 'slim-bullseye'] include: - ghc: '9.12.2' @@ -41,7 +41,7 @@ jobs: - ghc: '9.12.2' ghc_minor: '9.12' deb: 'slim-bullseye' - - ghc: '9.10.2' + - ghc: '9.10.3' ghc_minor: '9.10' - ghc: '9.8.4' ghc_minor: '9.8' @@ -73,7 +73,7 @@ jobs: strategy: fail-fast: false matrix: - ghc: ['9.6.7', '9.8.4', '9.10.2', '9.12.2'] + ghc: ['9.6.7', '9.8.4', '9.10.3', '9.12.2'] # native arm runner; still avoid slim variants here deb: ['bullseye'] include: @@ -82,7 +82,7 @@ jobs: ghc_minor: '9.12' deb: 'bookworm' # bullseye (debian 11) - - ghc: '9.10.2' + - ghc: '9.10.3' ghc_minor: '9.10' - ghc: '9.8.4' ghc_minor: '9.8' diff --git a/9.10/bookworm.yaml b/9.10/bookworm.yaml index e3979825..7b7bbb47 100644 --- a/9.10/bookworm.yaml +++ b/9.10/bookworm.yaml @@ -4,11 +4,11 @@ distro: abbr: 'deb12' image: 'debian:bookworm' ghc: - version: "9.10.2" + version: "9.10.3" release_key: "88B57FCF7DB53B4DB3BFA4B1588764FBE22D19C4" sha256sum: - "aarch64": '0188ca098abdaf71eb0804d0f35311f405da489137d8d438bfaa43b8d1e3f1b0' - "x86_64": '71d025743f2eb4d3af95d4dd94a22c093c2814d78ab95dd0e12bb6751b1c7d4e' + "aarch64": '052789dfe7f6fba6dc3822de0da272e8a5bd358c37adae17d8e82cff39bc1008' + "x86_64": '1ac63f04eac0ad551d45cbde38f27e0e3f43ceefd98833fae1fa3f2dbd042367' cabal_install: sha256sum: "aarch64": 'f763fb2af2bc1ff174b7361a7d51109a585954f87a0e14f86d144f3bce28f7a9' @@ -16,6 +16,6 @@ cabal_install: overrides: ghc: "aarch64": - # GHC 9.10.2 doesn't have a deb12 bindist for aarch64 for some reason, so we're using the bullseye one instead - url: "https://downloads.haskell.org/~ghc/9.10.2/ghc-9.10.2-aarch64-deb11-linux.tar.xz" + # GHC 9.10.3 doesn't have a deb12 bindist for aarch64 for some reason, so we're using the bullseye one instead + url: "https://downloads.haskell.org/~ghc/9.10.3/ghc-9.10.3-aarch64-deb11-linux.tar.xz" _globals: !include '_globals.yaml' diff --git a/9.10/bookworm/Dockerfile b/9.10/bookworm/Dockerfile index 5b94c67d..e9c0814c 100644 --- a/9.10/bookworm/Dockerfile +++ b/9.10/bookworm/Dockerfile @@ -101,7 +101,7 @@ RUN <&2 "error: unsupported architecture '$ARCH'" ; exit 1 ;; esac diff --git a/9.10/bullseye.yaml b/9.10/bullseye.yaml index 020d0ba8..7a1392ff 100644 --- a/9.10/bullseye.yaml +++ b/9.10/bullseye.yaml @@ -4,11 +4,11 @@ distro: abbr: 'deb11' image: 'debian:bullseye' ghc: - version: "9.10.2" + version: "9.10.3" release_key: "88B57FCF7DB53B4DB3BFA4B1588764FBE22D19C4" sha256sum: - "aarch64": '0188ca098abdaf71eb0804d0f35311f405da489137d8d438bfaa43b8d1e3f1b0' - "x86_64": '2fe2c3e0a07e4782530e8bf83eeda8ff6935e40d5450c1809abcdc6182c9c848' + "aarch64": '052789dfe7f6fba6dc3822de0da272e8a5bd358c37adae17d8e82cff39bc1008' + "x86_64": 'b6bbd3514e0cdb9db350812a003bb7c670c58d99779086fbe41092b019548924' cabal_install: sha256sum: "aarch64": '5e8c47a055d5b744741039a7061ee43ec7d080d1251784e7a4cd836403e42523' diff --git a/9.10/bullseye/Dockerfile b/9.10/bullseye/Dockerfile index 4c3c79fb..93878608 100644 --- a/9.10/bullseye/Dockerfile +++ b/9.10/bullseye/Dockerfile @@ -101,7 +101,7 @@ RUN <&2 "error: unsupported architecture '$ARCH'" ; exit 1 ;; esac diff --git a/9.10/slim-bookworm.yaml b/9.10/slim-bookworm.yaml index c90b809e..20fc0bba 100644 --- a/9.10/slim-bookworm.yaml +++ b/9.10/slim-bookworm.yaml @@ -4,11 +4,11 @@ distro: abbr: 'deb12' image: 'debian:bookworm-slim' ghc: - version: "9.10.2" + version: "9.10.3" release_key: "88B57FCF7DB53B4DB3BFA4B1588764FBE22D19C4" sha256sum: - "aarch64": '0188ca098abdaf71eb0804d0f35311f405da489137d8d438bfaa43b8d1e3f1b0' - "x86_64": '71d025743f2eb4d3af95d4dd94a22c093c2814d78ab95dd0e12bb6751b1c7d4e' + "aarch64": '052789dfe7f6fba6dc3822de0da272e8a5bd358c37adae17d8e82cff39bc1008' + "x86_64": '1ac63f04eac0ad551d45cbde38f27e0e3f43ceefd98833fae1fa3f2dbd042367' cabal_install: sha256sum: "aarch64": 'f763fb2af2bc1ff174b7361a7d51109a585954f87a0e14f86d144f3bce28f7a9' @@ -16,6 +16,6 @@ cabal_install: overrides: ghc: "aarch64": - # GHC 9.10.2 doesn't have a deb12 bindist for aarch64 for some reason, so we're using the bullseye one instead - url: "https://downloads.haskell.org/~ghc/9.10.2/ghc-9.10.2-aarch64-deb11-linux.tar.xz" + # GHC 9.10.3 doesn't have a deb12 bindist for aarch64 for some reason, so we're using the bullseye one instead + url: "https://downloads.haskell.org/~ghc/9.10.3/ghc-9.10.3-aarch64-deb11-linux.tar.xz" _globals: !include '_globals.yaml' diff --git a/9.10/slim-bookworm/Dockerfile b/9.10/slim-bookworm/Dockerfile index 41a5c700..af2605ee 100644 --- a/9.10/slim-bookworm/Dockerfile +++ b/9.10/slim-bookworm/Dockerfile @@ -101,7 +101,7 @@ RUN <&2 "error: unsupported architecture '$ARCH'" ; exit 1 ;; esac diff --git a/9.10/slim-bullseye.yaml b/9.10/slim-bullseye.yaml index b307ee1a..a52438be 100644 --- a/9.10/slim-bullseye.yaml +++ b/9.10/slim-bullseye.yaml @@ -4,11 +4,11 @@ distro: abbr: 'deb11' image: 'debian:bullseye-slim' ghc: - version: "9.10.2" + version: "9.10.3" release_key: "88B57FCF7DB53B4DB3BFA4B1588764FBE22D19C4" sha256sum: - "aarch64": '0188ca098abdaf71eb0804d0f35311f405da489137d8d438bfaa43b8d1e3f1b0' - "x86_64": '2fe2c3e0a07e4782530e8bf83eeda8ff6935e40d5450c1809abcdc6182c9c848' + "aarch64": '052789dfe7f6fba6dc3822de0da272e8a5bd358c37adae17d8e82cff39bc1008' + "x86_64": 'b6bbd3514e0cdb9db350812a003bb7c670c58d99779086fbe41092b019548924' cabal_install: sha256sum: "aarch64": '5e8c47a055d5b744741039a7061ee43ec7d080d1251784e7a4cd836403e42523' diff --git a/9.10/slim-bullseye/Dockerfile b/9.10/slim-bullseye/Dockerfile index 9461ac51..1d6d98cc 100644 --- a/9.10/slim-bullseye/Dockerfile +++ b/9.10/slim-bullseye/Dockerfile @@ -101,7 +101,7 @@ RUN <&2 "error: unsupported architecture '$ARCH'" ; exit 1 ;; esac