Skip to content

Commit

Permalink
GHC 9.6.4
Browse files Browse the repository at this point in the history
  • Loading branch information
develop7 committed Jan 9, 2024
1 parent 3d23b93 commit 898a3bc
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/debian.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
strategy:
fail-fast: false
matrix:
ghc: ['9.0.2', '9.2.8', '9.4.8', '9.6.3', '9.8.1']
ghc: ['9.0.2', '9.2.8', '9.4.8', '9.6.4', '9.8.1']
deb: ['buster', 'slim-buster']
include:
- ghc: '9.0.2'
Expand All @@ -31,7 +31,7 @@ jobs:
ghc_minor: '9.2'
- ghc: '9.4.8'
ghc_minor: '9.4'
- ghc: '9.6.3'
- ghc: '9.6.4'
ghc_minor: '9.6'
- ghc: '9.8.1'
ghc_minor: '9.8'
Expand Down Expand Up @@ -61,7 +61,7 @@ jobs:
strategy:
fail-fast: false
matrix:
ghc: ['9.0.2', '9.2.8', '9.4.8', '9.6.3', '9.8.1']
ghc: ['9.0.2', '9.2.8', '9.4.8', '9.6.4', '9.8.1']
# uraimo/run-on-arch-action does not support debian slim variants
deb: ['buster']
arch: ['aarch64']
Expand All @@ -72,7 +72,7 @@ jobs:
ghc_minor: '9.2'
- ghc: '9.4.8'
ghc_minor: '9.4'
- ghc: '9.6.3'
- ghc: '9.6.4'
ghc_minor: '9.6'
- ghc: '9.8.1'
ghc_minor: '9.8'
Expand Down
8 changes: 4 additions & 4 deletions 9.6/buster/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,8 @@ RUN set -eux; \
\
cabal --version

ARG GHC=9.6.3
ARG GHC_RELEASE_KEY=33C3A599DB85EA9B8BAA1866B202264020068BFB
ARG GHC=9.6.4
ARG GHC_RELEASE_KEY=88B57FCF7DB53B4DB3BFA4B1588764FBE22D19C4

RUN set -eux; \
cd /tmp; \
Expand All @@ -90,10 +90,10 @@ RUN set -eux; \
# sha256 from https://downloads.haskell.org/~ghc/$GHC/SHA256SUMS
case "$ARCH" in \
'aarch64') \
GHC_SHA256='03c389859319f09452081310fc13af7525063ea8930830ef76be2a14b312271e'; \
GHC_SHA256='d430345a66128c858e09dd9a90e5beabc045a9a3cedf776aea3adb45d1286276'; \
;; \
'x86_64') \
GHC_SHA256='9ba0458c84efdbba69509c3c57497e22ad03743f816eb9c8b024abc13f7aacaa'; \
GHC_SHA256='59885c43902110262cda168513dc6a9cc750e3e728dffb0cdb168e44929cb014'; \
;; \
*) echo >&2 "error: unsupported architecture '$ARCH'" ; exit 1 ;; \
esac; \
Expand Down
8 changes: 4 additions & 4 deletions 9.6/slim-buster/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -94,8 +94,8 @@ RUN set -eux; \
\
cabal --version

ARG GHC=9.6.3
ARG GHC_RELEASE_KEY=33C3A599DB85EA9B8BAA1866B202264020068BFB
ARG GHC=9.6.4
ARG GHC_RELEASE_KEY=88B57FCF7DB53B4DB3BFA4B1588764FBE22D19C4

RUN set -eux; \
cd /tmp; \
Expand All @@ -104,10 +104,10 @@ RUN set -eux; \
# sha256 from https://downloads.haskell.org/~ghc/$GHC/SHA256SUMS
case "$ARCH" in \
'aarch64') \
GHC_SHA256='03c389859319f09452081310fc13af7525063ea8930830ef76be2a14b312271e'; \
GHC_SHA256='d430345a66128c858e09dd9a90e5beabc045a9a3cedf776aea3adb45d1286276'; \
;; \
'x86_64') \
GHC_SHA256='9ba0458c84efdbba69509c3c57497e22ad03743f816eb9c8b024abc13f7aacaa'; \
GHC_SHA256='59885c43902110262cda168513dc6a9cc750e3e728dffb0cdb168e44929cb014'; \
;; \
*) echo >&2 "error: unsupported architecture '$ARCH'" ; exit 1 ;; \
esac; \
Expand Down

0 comments on commit 898a3bc

Please sign in to comment.