-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Include ghc981 in CI testing. Test all valid combinations of flags, except for large-records on GHC 9.6+ and dhall on GHC 9.8, neither of which is currently possible.
- Loading branch information
Showing
33 changed files
with
854 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,6 +16,28 @@ jobs: | |
- ghc928 | ||
- ghc948 | ||
- ghc962 | ||
- ghc981 | ||
dhall: | ||
- false | ||
- true | ||
swagger: | ||
- false | ||
- true | ||
swaggerWrapper: | ||
- false | ||
- true | ||
largeRecords: | ||
- false | ||
- true | ||
exclude: | ||
- swagger: false | ||
swaggerWrapper: true | ||
- compiler: ghc962 | ||
largeRecords: true | ||
- compiler: ghc981 | ||
largeRecords: true | ||
- compiler: ghc981 | ||
dhall: true | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- uses: actions/[email protected] | ||
|
@@ -27,5 +49,4 @@ jobs: | |
with: | ||
name: awakesecurity | ||
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' | ||
- run: nix-build --attr proto3-suite --argstr compiler "${{ matrix.compiler }}" --arg enableDhall true --arg enableLargeRecords false | ||
- run: nix-build --attr proto3-suite --argstr compiler "${{ matrix.compiler }}" --arg enableDhall true --arg enableLargeRecords true | ||
- run: nix-build --attr proto3-suite --argstr compiler "${{ matrix.compiler }}" --arg enableDhall "${{ matrix.dhall }}" --arg enableSwagger "${{ matrix.swagger }}" --arg swaggerWrapperFormat "${{ matrix.swaggerWrapper }}" --arg enableLargeRecords "${{ matrix.largeRecords }}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ mkDerivation, assoc, base, comonad, containers | ||
, foldable1-classes-compat, hspec, hspec-discover, lib, QuickCheck | ||
, tagged, template-haskell, th-abstraction, transformers | ||
, transformers-compat | ||
}: | ||
mkDerivation { | ||
pname = "bifunctors"; | ||
version = "5.6.2"; | ||
sha256 = "1086a9285061eed0c2c5d3cb65aa223defd52fca6d0515bb69ddf2dbc3d9697a"; | ||
libraryHaskellDepends = [ | ||
assoc base comonad containers foldable1-classes-compat tagged | ||
template-haskell th-abstraction transformers | ||
]; | ||
testHaskellDepends = [ | ||
base hspec QuickCheck template-haskell transformers | ||
transformers-compat | ||
]; | ||
testToolDepends = [ hspec-discover ]; | ||
homepage = "http://github.com/ekmett/bifunctors/"; | ||
description = "Bifunctors"; | ||
license = lib.licenses.bsd3; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
{ mkDerivation, aeson, array, base, base-orphans, base16-bytestring | ||
, base64-bytestring, bytestring, containers, deepseq, ghc-bignum | ||
, ghc-prim, half, lib, primitive, QuickCheck, random, scientific | ||
, tasty, tasty-hunit, tasty-quickcheck, text, vector | ||
}: | ||
mkDerivation { | ||
pname = "cborg"; | ||
version = "0.2.10.0"; | ||
sha256 = "17fe070c38fc498cab49bcb9d6215b7747d53bedf96502e9bcce9cad73b9c797"; | ||
libraryHaskellDepends = [ | ||
array base bytestring containers deepseq ghc-bignum ghc-prim half | ||
primitive text | ||
]; | ||
testHaskellDepends = [ | ||
aeson array base base-orphans base16-bytestring base64-bytestring | ||
bytestring deepseq half primitive QuickCheck random scientific | ||
tasty tasty-hunit tasty-quickcheck text vector | ||
]; | ||
description = "Concise Binary Object Representation (CBOR)"; | ||
license = lib.licenses.bsd3; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
{ mkDerivation, base, code-page, deepseq, directory, exceptions | ||
, filepath, ghc, ghc-paths, hspec, hspec-core, hspec-discover | ||
, HUnit, lib, mockery, process, QuickCheck, setenv, silently | ||
, stringbuilder, syb, transformers | ||
}: | ||
mkDerivation { | ||
pname = "doctest"; | ||
version = "0.22.2"; | ||
sha256 = "afb839c14019c17e3ec7900871a9fc104226028858c724932d53225ae382c6e5"; | ||
isLibrary = true; | ||
isExecutable = true; | ||
libraryHaskellDepends = [ | ||
base code-page deepseq directory exceptions filepath ghc ghc-paths | ||
process syb transformers | ||
]; | ||
executableHaskellDepends = [ | ||
base code-page deepseq directory exceptions filepath ghc ghc-paths | ||
process syb transformers | ||
]; | ||
testHaskellDepends = [ | ||
base code-page deepseq directory exceptions filepath ghc ghc-paths | ||
hspec hspec-core HUnit mockery process QuickCheck setenv silently | ||
stringbuilder syb transformers | ||
]; | ||
testToolDepends = [ hspec-discover ]; | ||
homepage = "https://github.com/sol/doctest#readme"; | ||
description = "Test interactive Haskell examples"; | ||
license = lib.licenses.mit; | ||
mainProgram = "doctest"; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ mkDerivation, base, comonad, containers, distributive, exceptions | ||
, indexed-traversable, lib, mtl, profunctors, semigroupoids | ||
, template-haskell, th-abstraction, transformers, transformers-base | ||
}: | ||
mkDerivation { | ||
pname = "free"; | ||
version = "5.2"; | ||
sha256 = "72867f7c89173263765736e8d395e94291f1aaea626ecb1d673d72ce90b94f89"; | ||
revision = "4"; | ||
editedCabalFile = "0vic3p2viip8gjww8fx19ax6ry7y34h7xclvhzkvmbspjh9d219x"; | ||
libraryHaskellDepends = [ | ||
base comonad containers distributive exceptions indexed-traversable | ||
mtl profunctors semigroupoids template-haskell th-abstraction | ||
transformers transformers-base | ||
]; | ||
homepage = "http://github.com/ekmett/free/"; | ||
description = "Monads for free"; | ||
license = lib.licenses.bsd3; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ mkDerivation, base, criterion, deepseq, ghc-prim, lib, sop-core | ||
, template-haskell, th-abstraction | ||
}: | ||
mkDerivation { | ||
pname = "generics-sop"; | ||
version = "0.5.1.4"; | ||
sha256 = "616a1c2176097469f9514e76d979fffdbc12d569f44fd01deb14377c7888797e"; | ||
libraryHaskellDepends = [ | ||
base ghc-prim sop-core template-haskell th-abstraction | ||
]; | ||
testHaskellDepends = [ base ]; | ||
benchmarkHaskellDepends = [ | ||
base criterion deepseq template-haskell | ||
]; | ||
description = "Generic Programming using True Sums of Products"; | ||
license = lib.licenses.bsd3; | ||
} |
Oops, something went wrong.