gnu: ghc-9.2: Increase make verbosity.
Tests time out on ci.guix.gnu.org. * gnu/packages/haskell.scm (ghc-9.2)[arguments]: Modify #:make-flags.
parent
49a320aaa6
commit
d603946d38
|
@ -1295,7 +1295,10 @@ interactive environment for the functional language Haskell.")
|
||||||
(replace 'fix-cc-reference
|
(replace 'fix-cc-reference
|
||||||
(lambda _
|
(lambda _
|
||||||
(substitute* "utils/hsc2hs/src/Common.hs"
|
(substitute* "utils/hsc2hs/src/Common.hs"
|
||||||
(("\"cc\"") "\"gcc\""))))))))
|
(("\"cc\"") "\"gcc\""))))))
|
||||||
|
;; Increase verbosity, so running the test suite does not time out on CI.
|
||||||
|
((#:make-flags make-flags ''())
|
||||||
|
#~(cons "VERBOSE=4" #$make-flags))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(;; GHC 9.2 must be built with GHC >= 8.6.
|
`(;; GHC 9.2 must be built with GHC >= 8.6.
|
||||||
("ghc-bootstrap" ,base)
|
("ghc-bootstrap" ,base)
|
||||||
|
|
Reference in New Issue