You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 27, 2024. It is now read-only.
- Update ghc-8.6.2 to 8.6.3.
- We don't use installed constraints, so we don't need a separate build step
that builds without them.
- Use latest make-travis-yml generator and drop the container-based build
environment. Closes#10.
- Enable install-examples flag to make sure the examples get built.
- "if ! $NOINSTALLEDCONSTRAINTS; then for pkg in $($HCPKG list --simple-output); do echo $pkg | grep -vw -- hackage-db | sed 's/^/constraints: /' | sed 's/-[^-]*$/ installed/' >> cabal.project.local; done; fi"
- "if ! $NOINSTALLEDCONSTRAINTS; then for pkg in $($HCPKG list --simple-output); do echo $pkg | grep -vw -- hackage-db | sed 's/^/constraints: /' | sed 's/-[^-]*$/ installed/' >> cabal.project.local; done; fi"
106
107
- cat cabal.project || true
@@ -115,16 +116,13 @@ script:
115
116
- if [ $HCNUMVER -ge 80000 ]; then (cd hackage-db-* && doctest src); fi
116
117
117
118
# hlint
118
-
- if [ $HCNUMVER -eq 80602 ]; then (cd hackage-db-* && hlint src); fi
119
+
- if [ $HCNUMVER -eq 80603 ]; then (cd hackage-db-* && hlint src); fi
119
120
120
121
# cabal check
121
122
- (cd hackage-db-* && cabal check)
122
123
123
124
# haddock
124
125
- if $HADDOCK; then cabal new-haddock -w ${HC} ${TEST} ${BENCH} all; else echo "Skipping haddock generation";fi
125
126
126
-
# Build without installed constraints for packages in global-db
127
-
- if $UNCONSTRAINED; then rm -f cabal.project.local; echo cabal new-build -w ${HC} --disable-tests --disable-benchmarks all; else echo "Not building without installed constraints"; fi
0 commit comments