mirror of
https://github.com/haskell-nix/hnix-store.git
synced 2024-11-28 05:36:24 +03:00
15f77e8f4b
takes too long and it runs in nix-build anyway. Ideally we would do `cabal haddock-project` but that is not yet available everywhere (due to older haddock). Maybe revisit later.
27 lines
789 B
Plaintext
27 lines
789 B
Plaintext
let haskellCi =
|
|
https://raw.githubusercontent.com/sorki/github-actions-dhall/main/haskell-ci.dhall
|
|
|
|
let defSteps = haskellCi.defaultCabalSteps
|
|
|
|
in haskellCi.generalCi
|
|
( haskellCi.withNix
|
|
( defSteps
|
|
with docStep = None haskellCi.BuildStep
|
|
with extraSteps.pre
|
|
=
|
|
defSteps.extraSteps.pre
|
|
# [ haskellCi.installCachixStep "hnix-store" ]
|
|
)
|
|
)
|
|
haskellCi.DhallMatrix::{
|
|
, ghc =
|
|
[ haskellCi.GHC.GHC963
|
|
, haskellCi.GHC.GHC947
|
|
, haskellCi.GHC.GHC928
|
|
, haskellCi.GHC.GHC902
|
|
, haskellCi.GHC.GHC8107
|
|
]
|
|
, os = [ haskellCi.OS.Ubuntu, haskellCi.OS.MacOS ]
|
|
}
|
|
: haskellCi.CI.Type
|