Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Preliminary support for ghc 9.12 #261

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
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
116 changes: 99 additions & 17 deletions .github/workflows/haskell-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
#
# For more information, see https://github.com/haskell-CI/haskell-ci
#
# version: 0.19.20240708
# version: 0.19.20241114
#
# REGENDATA ("0.19.20240708",["github","cabal.project.ci"])
# REGENDATA ("0.19.20241114",["github","cabal.project.ci"])
#
name: Haskell-CI
on:
Expand All @@ -32,6 +32,11 @@ jobs:
strategy:
matrix:
include:
- compiler: ghc-9.12.0.20241031
compilerKind: ghc
compilerVersion: 9.12.0.20241031
setup-method: ghcup-prerelease
allow-failure: false
- compiler: ghc-9.10.1
compilerKind: ghc
compilerVersion: 9.10.1
Expand Down Expand Up @@ -64,42 +69,61 @@ jobs:
allow-failure: false
fail-fast: false
steps:
- name: apt
- name: apt-get install
run: |
apt-get update
apt-get install -y --no-install-recommends gnupg ca-certificates dirmngr curl git software-properties-common libtinfo5
apt-get install -y libsnappy-dev protobuf-compiler
- name: Install GHCup
run: |
mkdir -p "$HOME/.ghcup/bin"
curl -sL https://downloads.haskell.org/ghcup/0.1.30.0/x86_64-linux-ghcup-0.1.30.0 > "$HOME/.ghcup/bin/ghcup"
chmod a+x "$HOME/.ghcup/bin/ghcup"
"$HOME/.ghcup/bin/ghcup" install ghc "$HCVER" || (cat "$HOME"/.ghcup/logs/*.* && false)
- name: Install cabal-install
run: |
"$HOME/.ghcup/bin/ghcup" install cabal 3.12.1.0 || (cat "$HOME"/.ghcup/logs/*.* && false)
apt-get update
apt-get install -y libsnappy-dev protobuf-compiler
echo "CABAL=$HOME/.ghcup/bin/cabal-3.12.1.0 -vnormal+nowrap" >> "$GITHUB_ENV"
- name: Install GHC (GHCup)
if: matrix.setup-method == 'ghcup'
run: |
"$HOME/.ghcup/bin/ghcup" install ghc "$HCVER" || (cat "$HOME"/.ghcup/logs/*.* && false)
HC=$("$HOME/.ghcup/bin/ghcup" whereis ghc "$HCVER")
HCPKG=$(echo "$HC" | sed 's#ghc$#ghc-pkg#')
HADDOCK=$(echo "$HC" | sed 's#ghc$#haddock#')
echo "HC=$HC" >> "$GITHUB_ENV"
echo "HCPKG=$HCPKG" >> "$GITHUB_ENV"
echo "HADDOCK=$HADDOCK" >> "$GITHUB_ENV"
env:
HCKIND: ${{ matrix.compilerKind }}
HCNAME: ${{ matrix.compiler }}
HCVER: ${{ matrix.compilerVersion }}
- name: Set PATH and environment variables
- name: Install GHC (GHCup prerelease)
if: matrix.setup-method == 'ghcup-prerelease'
run: |
echo "$HOME/.cabal/bin" >> $GITHUB_PATH
echo "LANG=C.UTF-8" >> "$GITHUB_ENV"
echo "CABAL_DIR=$HOME/.cabal" >> "$GITHUB_ENV"
echo "CABAL_CONFIG=$HOME/.cabal/config" >> "$GITHUB_ENV"
HCDIR=/opt/$HCKIND/$HCVER
"$HOME/.ghcup/bin/ghcup" config add-release-channel https://raw.githubusercontent.com/haskell/ghcup-metadata/master/ghcup-prereleases-0.0.8.yaml;
"$HOME/.ghcup/bin/ghcup" install ghc "$HCVER" || (cat "$HOME"/.ghcup/logs/*.* && false)
HC=$("$HOME/.ghcup/bin/ghcup" whereis ghc "$HCVER")
HCPKG=$(echo "$HC" | sed 's#ghc$#ghc-pkg#')
HADDOCK=$(echo "$HC" | sed 's#ghc$#haddock#')
echo "HC=$HC" >> "$GITHUB_ENV"
echo "HCPKG=$HCPKG" >> "$GITHUB_ENV"
echo "HADDOCK=$HADDOCK" >> "$GITHUB_ENV"
echo "CABAL=$HOME/.ghcup/bin/cabal-3.12.1.0 -vnormal+nowrap" >> "$GITHUB_ENV"
env:
HCKIND: ${{ matrix.compilerKind }}
HCNAME: ${{ matrix.compiler }}
HCVER: ${{ matrix.compilerVersion }}
- name: Set PATH and environment variables
run: |
echo "$HOME/.cabal/bin" >> $GITHUB_PATH
echo "LANG=C.UTF-8" >> "$GITHUB_ENV"
echo "CABAL_DIR=$HOME/.cabal" >> "$GITHUB_ENV"
echo "CABAL_CONFIG=$HOME/.cabal/config" >> "$GITHUB_ENV"
HCNUMVER=$(${HC} --numeric-version|perl -ne '/^(\d+)\.(\d+)\.(\d+)(\.(\d+))?$/; print(10000 * $1 + 100 * $2 + ($3 == 0 ? $5 != 1 : $3))')
echo "HCNUMVER=$HCNUMVER" >> "$GITHUB_ENV"
echo "ARG_TESTS=--enable-tests" >> "$GITHUB_ENV"
echo "ARG_BENCH=--enable-benchmarks" >> "$GITHUB_ENV"
echo "HEADHACKAGE=false" >> "$GITHUB_ENV"
if [ $((HCNUMVER >= 91200)) -ne 0 ] ; then echo "HEADHACKAGE=true" >> "$GITHUB_ENV" ; else echo "HEADHACKAGE=false" >> "$GITHUB_ENV" ; fi
echo "ARG_COMPILER=--$HCKIND --with-compiler=$HC" >> "$GITHUB_ENV"
echo "GHCJSARITH=0" >> "$GITHUB_ENV"
env:
HCKIND: ${{ matrix.compilerKind }}
HCNAME: ${{ matrix.compiler }}
Expand All @@ -126,6 +150,18 @@ jobs:
repository hackage.haskell.org
url: http://hackage.haskell.org/
EOF
if $HEADHACKAGE; then
cat >> $CABAL_CONFIG <<EOF
repository head.hackage.ghc.haskell.org
url: https://ghc.gitlab.haskell.org/head.hackage/
secure: True
root-keys: 7541f32a4ccca4f97aea3b22f5e593ba2c0267546016b992dfadcd2fe944e55d
26021a13b401500c8eb2761ca95c61f2d625bfef951b939a8124ed12ecf07329
f76d08be13e9a61a377a85e2fb63f4c5435d40f8feb3e12eb05905edb8cdea89
key-threshold: 3
active-repositories: hackage.haskell.org, head.hackage.ghc.haskell.org:override
EOF
fi
cat >> $CABAL_CONFIG <<EOF
program-default-options
ghc-options: $GHCJOBS +RTS -M3G -RTS
Expand Down Expand Up @@ -226,6 +262,49 @@ jobs:
cat >> cabal.project <<EOF
allow-newer: proto-lens:base
allow-newer: proto-lens-runtime:base
allow-newer: active:base
allow-newer: assoc:base
allow-newer: binary-orphans:base
allow-newer: blaze-svg:base
allow-newer: cborg:base
allow-newer: data-fix:base
allow-newer: diagrams-core:base
allow-newer: diagrams-lib:base
allow-newer: diagrams-postscript:base
allow-newer: diagrams-svg:base
allow-newer: dual-tree:base
allow-newer: ghc-events:base
allow-newer: hashable:base
allow-newer: indexed-traversable-instances:base
allow-newer: indexed-traversable:base
allow-newer: integer-conversion:base
allow-newer: integer-logarithms:base
allow-newer: monoid-extras:base
allow-newer: OneTuple:base
allow-newer: quickcheck-instances:base
allow-newer: scientific:base
allow-newer: semialign:base
allow-newer: serialise:base
allow-newer: snappy-c:base
allow-newer: splitmix:base
allow-newer: statestack:base
allow-newer: svg-builder:base
allow-newer: text-short:base
allow-newer: these:base
allow-newer: time-compat:base
allow-newer: tree-diff:base
allow-newer: zlib:base
allow-newer: assoc:template-haskell
allow-newer: splitmix:template-haskell
allow-newer: bytes:time
allow-newer: Chart-diagrams:time
allow-newer: time-compat:time
allow-newer: tree-diff:time

source-repository-package
type: git
location: https://github.com/haskell-fswatch/hfsnotify.git
tag: eea82a54558933f8cf292ca07ed29a454742ecc0

package grpc-spec
tests: True
Expand All @@ -235,7 +314,7 @@ jobs:
package grapesy
tests: True
benchmarks: True
flags: +build-demo +build-stress-test
flags: +build-demo +build-stress-test
ghc-options: -Werror

package quickstart-tutorial
Expand All @@ -259,6 +338,9 @@ jobs:
package trailers-only-tutorial
ghc-options: -Werror
EOF
if $HEADHACKAGE; then
echo "allow-newer: $($HCPKG list --simple-output | sed -E 's/([a-zA-Z-]+)-[0-9.]+/*:\1,/g')" >> cabal.project
fi
$HCPKG list --simple-output --names-only | perl -ne 'for (split /\s+/) { print "constraints: any.$_ installed\n" unless /^(basics-tutorial|conduit-tutorial|grapesy|grpc-spec|lowlevel-tutorial|metadata-tutorial|monadstack-tutorial|quickstart-tutorial|trailers-only-tutorial)$/; }' >> cabal.project.local
cat cabal.project
cat cabal.project.local
Expand Down Expand Up @@ -313,8 +395,8 @@ jobs:
rm -f cabal.project.local
$CABAL v2-build $ARG_COMPILER --disable-tests --disable-benchmarks all
- name: save cache
uses: actions/cache/save@v4
if: always()
uses: actions/cache/save@v4
with:
key: ${{ runner.os }}-${{ matrix.compiler }}-${{ github.sha }}
path: ~/.cabal/store
68 changes: 59 additions & 9 deletions cabal.project
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
packages:
packages:
./grpc-spec
, ./grapesy
, ./tutorials/quickstart
, ./tutorials/basics
, ./tutorials/lowlevel
, ./tutorials/metadata
, ./tutorials/monadstack
, ./tutorials/conduit
, ./tutorials/trailers-only
-- , ./tutorials/quickstart
-- , ./tutorials/basics
-- , ./tutorials/lowlevel
-- , ./tutorials/metadata
-- , ./tutorials/monadstack
-- , ./tutorials/conduit
-- , ./tutorials/trailers-only

package grpc-spec
tests: True
Expand All @@ -16,11 +16,61 @@ package grpc-spec
package grapesy
tests: True
benchmarks: True
flags: +build-demo +build-stress-test
flags: +build-demo +build-stress-test

--
-- ghc 9.10
--

allow-newer: proto-lens:base
allow-newer: proto-lens-runtime:base

--
-- ghc 9.12
--

allow-newer: active:base
allow-newer: assoc:base
allow-newer: binary-orphans:base
allow-newer: blaze-svg:base
allow-newer: cborg:base
allow-newer: data-fix:base
allow-newer: diagrams-core:base
allow-newer: diagrams-lib:base
allow-newer: diagrams-postscript:base
allow-newer: diagrams-svg:base
allow-newer: dual-tree:base
allow-newer: ghc-events:base
allow-newer: hashable:base
allow-newer: indexed-traversable-instances:base
allow-newer: indexed-traversable:base
allow-newer: integer-conversion:base
allow-newer: integer-logarithms:base
allow-newer: monoid-extras:base
allow-newer: OneTuple:base
allow-newer: quickcheck-instances:base
allow-newer: scientific:base
allow-newer: semialign:base
allow-newer: serialise:base
allow-newer: snappy-c:base
allow-newer: splitmix:base
allow-newer: statestack:base
allow-newer: svg-builder:base
allow-newer: text-short:base
allow-newer: these:base
allow-newer: time-compat:base
allow-newer: tree-diff:base
allow-newer: zlib:base

allow-newer: assoc:template-haskell
allow-newer: splitmix:template-haskell

allow-newer: bytes:time
allow-newer: Chart-diagrams:time
allow-newer: time-compat:time
allow-newer: tree-diff:time

source-repository-package
type: git
location: https://github.com/haskell-fswatch/hfsnotify.git
tag: eea82a54558933f8cf292ca07ed29a454742ecc0
54 changes: 52 additions & 2 deletions cabal.project.ci
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
packages:
packages:
./grpc-spec
, ./grapesy
, ./tutorials/quickstart
Expand All @@ -17,7 +17,7 @@ package grpc-spec
package grapesy
tests: True
benchmarks: True
flags: +build-demo +build-stress-test
flags: +build-demo +build-stress-test
ghc-options: -Werror

package quickstart-tutorial
Expand Down Expand Up @@ -47,3 +47,53 @@ package trailers-only-tutorial

allow-newer: proto-lens:base
allow-newer: proto-lens-runtime:base

--
-- ghc 9.12
--

allow-newer: active:base
allow-newer: assoc:base
allow-newer: binary-orphans:base
allow-newer: blaze-svg:base
allow-newer: cborg:base
allow-newer: data-fix:base
allow-newer: diagrams-core:base
allow-newer: diagrams-lib:base
allow-newer: diagrams-postscript:base
allow-newer: diagrams-svg:base
allow-newer: dual-tree:base
allow-newer: ghc-events:base
allow-newer: hashable:base
allow-newer: indexed-traversable-instances:base
allow-newer: indexed-traversable:base
allow-newer: integer-conversion:base
allow-newer: integer-logarithms:base
allow-newer: monoid-extras:base
allow-newer: OneTuple:base
allow-newer: quickcheck-instances:base
allow-newer: scientific:base
allow-newer: semialign:base
allow-newer: serialise:base
allow-newer: snappy-c:base
allow-newer: splitmix:base
allow-newer: statestack:base
allow-newer: svg-builder:base
allow-newer: text-short:base
allow-newer: these:base
allow-newer: time-compat:base
allow-newer: tree-diff:base
allow-newer: zlib:base

allow-newer: assoc:template-haskell
allow-newer: splitmix:template-haskell

allow-newer: bytes:time
allow-newer: Chart-diagrams:time
allow-newer: time-compat:time
allow-newer: tree-diff:time

source-repository-package
type: git
location: https://github.com/haskell-fswatch/hfsnotify.git
tag: eea82a54558933f8cf292ca07ed29a454742ecc0
5 changes: 3 additions & 2 deletions grapesy/grapesy.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ tested-with: GHC==8.10.7
, GHC==9.6.6
, GHC==9.8.2
, GHC==9.10.1
, GHC==9.12.1

source-repository head
type: git
Expand All @@ -39,7 +40,7 @@ common lang
-Widentities
-Wmissing-export-lists
build-depends:
base >= 4.14 && < 4.21
base >= 4.14 && < 4.22
default-language:
Haskell2010
default-extensions:
Expand Down Expand Up @@ -426,7 +427,7 @@ benchmark grapesy-kvstore
-- Additional dependencies
, base16-bytestring >= 1.0 && < 1.1
, base64-bytestring >= 1.2 && < 1.3
, hashable >= 1.3 && < 1.5
, hashable >= 1.3 && < 1.6
, optparse-applicative >= 0.16 && < 0.19
, proto-lens-runtime >= 0.7 && < 0.8
, splitmix >= 0.1 && < 0.2
Expand Down
Loading