Update supported GHC versions list (#32)

* Update supported GHC versions list

* Drop ghc pre-release now that we have 961 in there

---------

Co-authored-by: Moritz Angermann <moritz.angermann@gmail.com>
This commit is contained in:
Yvan Sraka 2023-03-26 09:53:21 +02:00 committed by GitHub
parent f42dc2a149
commit 48c1251186
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -100,7 +100,7 @@
"ghc881" "ghc882" "ghc883" "ghc884"
"ghc8101" "ghc8102" "ghc8103" "ghc8104" "ghc8105" "ghc8106" "ghc810420210212"
"ghc901"
"ghc921" "ghc922" "ghc923" "ghc924" "ghc925"
"ghc921" "ghc922" "ghc923" "ghc924" "ghc925" "ghc926"
"ghc941" "ghc942" "ghc943" ];
static-pkgs = if pkgs.stdenv.hostPlatform.isLinux
then if pkgs.stdenv.hostPlatform.isAarch64

View File

@ -4,7 +4,7 @@ inputs:
compiler:
description: 'compiler name to use, e.g. ghc8107, ghc924, ...'
required: true
default: "ghc925"
default: "ghc927"
runs:
using: "composite"
@ -22,8 +22,8 @@ runs:
run: nix develop github:input-output-hk/devx#${{ inputs.compiler }} --no-write-lock-file --command cabal update
shell: bash
- name: Build dependencies
run: nix develop github:input-output-hk/devx#${{ inputs.compiler }} --no-write-lock-file --command cabal build all --only-dependencies -j
run: nix develop github:input-output-hk/devx#${{ inputs.compiler }} --no-write-lock-file --command cabal build all --only-dependencies -j
shell: bash
- name: Build project
run: nix develop github:input-output-hk/devx#${{ inputs.compiler }} --no-write-lock-file --command cabal build all -j
run: nix develop github:input-output-hk/devx#${{ inputs.compiler }} --no-write-lock-file --command cabal build all -j
shell: bash