From 7f81dc099e1c8bf872d970b50c3a73f0b9f27db5 Mon Sep 17 00:00:00 2001 From: Sebastian Witte Date: Sun, 12 Nov 2023 15:50:15 +0100 Subject: [PATCH] Add stackage version with GHC 9.6 --- .github/workflows/ci.yml | 1 + stack-ghc-9.6.yaml | 17 +++++++++++++++++ stack.yaml | 2 +- 3 files changed, 19 insertions(+), 1 deletion(-) create mode 100644 stack-ghc-9.6.yaml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e00d947..4d6b881 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,6 +17,7 @@ jobs: - stack-ghc-9.0.yaml - stack-ghc-9.2.yaml - stack-ghc-9.4.yaml + - stack-ghc-9.6.yaml # technically redundant, since this should be a symlink, # but just to be extra sure - stack.yaml diff --git a/stack-ghc-9.6.yaml b/stack-ghc-9.6.yaml new file mode 100644 index 0000000..ad0ebc4 --- /dev/null +++ b/stack-ghc-9.6.yaml @@ -0,0 +1,17 @@ +flags: {} +packages: +- '.' + +resolver: nightly-2023-11-10 +extra-deps: [] + +allow-newer: false + +nix: + # Not using pure here because it is very practical to inherit + # $NVIM when developing and debugging plugins. + pure: false + + packages: + - zlib + - neovim # for api generation diff --git a/stack.yaml b/stack.yaml index 3685da7..6a6541f 120000 --- a/stack.yaml +++ b/stack.yaml @@ -1 +1 @@ -stack-ghc-9.4.yaml \ No newline at end of file +stack-ghc-9.6.yaml \ No newline at end of file