File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -246,10 +246,6 @@ jobs:
246246 echo " ghc-options: -Werror=missing-methods -Werror=missing-fields" >> cabal.project
247247 if [ $((HCNUMVER >= 80400)) -ne 0 ] ; then echo "package github-samples" >> cabal.project ; fi
248248 if [ $((HCNUMVER >= 80400)) -ne 0 ] ; then echo " ghc-options: -Werror=missing-methods -Werror=missing-fields" >> cabal.project ; fi
249- if [ $((HCNUMVER >= 90400)) -ne 0 ] ; then echo "package github" >> cabal.project ; fi
250- if [ $((HCNUMVER >= 90400)) -ne 0 ] ; then echo " ghc-options: -Werror=unused-packages" >> cabal.project ; fi
251- if [ $((HCNUMVER >= 90400)) -ne 0 ] ; then echo "package github-samples" >> cabal.project ; fi
252- if [ $((HCNUMVER >= 90400)) -ne 0 ] ; then echo " ghc-options: -Werror=unused-packages" >> cabal.project ; fi
253249 if [ $((HCNUMVER >= 90000)) -ne 0 ] ; then echo "package github" >> cabal.project ; fi
254250 if [ $((HCNUMVER >= 90000)) -ne 0 ] ; then echo " ghc-options: -Werror=incomplete-patterns -Werror=incomplete-uni-patterns" >> cabal.project ; fi
255251 if [ $((HCNUMVER >= 90000)) -ne 0 ] ; then echo "package github-samples" >> cabal.project ; fi
Original file line number Diff line number Diff line change @@ -3,6 +3,11 @@ haddock: >=8.6
33 -- See PR #355: haddocks for GADT constructor arguments only supported from GHC 8.6
44jobs-selection: any
55
6+ -- Package github-samples uses "include" for dependencies,
7+ -- so they are a superset.
8+ -- Dissecting this is a waste of time, so I turn -Werror=unused-packages off
9+ error-unused-packages: False
10+
611-- Some dependencies do not allow mtl-2.3 yet, so this doesn't pass yet:
712-- constraint-set mtl-2.3
813-- ghc: >= 8.6
Original file line number Diff line number Diff line change @@ -29,7 +29,6 @@ library
2929 build-depends :
3030 , base >= 4.11 && < 5
3131 -- require base-4.11 because then (<>) is in Prelude
32- , base-compat-batteries
3332 , github
3433 , text
3534
You can’t perform that action at this time.
0 commit comments