Closed Bodigrim closed 2 years ago
Thanks for the fix, @Bodigrim!
This looks good to me, but I'm confused by this CI error:
Unpacking GHC into /home/circleci/.stack/programs/x86_64-linux/ghc-9.0.1.temp/ ...
Received ExitFailure (-15) when running
Raw command: /bin/tar Jxf /home/circleci/.stack/programs/x86_64-linux/ghc-9.0.1.tar.xz
Run from: /home/circleci/.stack/programs/x86_64-linux/ghc-9.0.1.temp/
Error: Error encountered while unpacking GHC with
tar Jxf /home/circleci/.stack/programs/x86_64-linux/ghc-9.0.1.tar.xz
run in /home/circleci/.stack/programs/x86_64-linux/ghc-9.0.1.temp/
The following directories may now contain files, but won't be used by stack:
- /home/circleci/.stack/programs/x86_64-linux/ghc-9.0.1.temp/
- /home/circleci/.stack/programs/x86_64-linux/ghc-9.0.1/
For more information consider rerunning with --verbose flag
Exited with code exit status 1
CircleCI received exit code 1
Also, CLA.
This looks good to me, but I'm confused by this CI error:
This fails before an actual build starts, so unlikely caused by my changes. Maybe upgrade Stackage snapshot to the latest nightly?
This looks good to me, but I'm confused by this CI error:
This fails before an actual build starts, so unlikely caused by my changes. Maybe upgrade Stackage snapshot to the latest nightly?
Yes, you are right. Maybe you can pick up the one line change from blackgnezdo:stack-9.0-new-nightly into this PR?
Fixed in #96
Cabal 3.7 (built from HEAD) has a stricter validation for conditionals and complains about duplicate modules:
It seems this stricter validation contradicts
hpack
's efforts to normalise conditional blocks, so I had to useverbatim
.CC @sol @gbaz @jinwoo