[Git][ghc/ghc][wip/marge_bot_batch_merge_job] 18 commits: gitlab-ci: Improve error message on failure of doc-tarball job

Marge Bot gitlab at gitlab.haskell.org
Sun Apr 21 03:36:29 UTC 2019



 Marge Bot pushed to branch wip/marge_bot_batch_merge_job at Glasgow Haskell Compiler / GHC


Commits:
37b1a6da by Ben Gamari at 2019-04-20T15:55:20Z
gitlab-ci: Improve error message on failure of doc-tarball job

Previously the failure was quite nondescript.

- - - - -
e3fe2601 by Ben Gamari at 2019-04-20T15:55:35Z
gitlab-ci: Allow doc-tarball job to fail

Due to allowed failure of Windows job.

- - - - -
bd3872df by Ben Gamari at 2019-04-20T15:55:38Z
gitlab-ci: Only run release notes lint on release tags

- - - - -
2145b738 by Ben Gamari at 2019-04-20T15:55:38Z
gitlab-ci: Add centos7 release job

- - - - -
983c53c3 by Ben Gamari at 2019-04-20T15:55:38Z
gitlab-ci: Do not build profiled libraries on 32-bit Windows

Due to #15934.

- - - - -
4db09426 by Ben Gamari at 2019-04-21T03:36:18Z
users-guide: Add pretty to package list

- - - - -
d6b19d29 by Ben Gamari at 2019-04-21T03:36:18Z
users-guide: Add libraries section to 8.10.1 release notes

- - - - -
3e746f11 by Andrew Martin at 2019-04-21T03:36:20Z
improve docs for casArray and casSmallArray

- - - - -
6eb4fb94 by Andrew Martin at 2019-04-21T03:36:20Z
[skip ci] say "machine words" instead of "Int units" in the primops docs

- - - - -
d4362c41 by Andrew Martin at 2019-04-21T03:36:20Z
[skip ci] correct formatting of casArray# in docs for casSmallArray#

- - - - -
2609e6d3 by Andrew Martin at 2019-04-21T03:36:20Z
[skip ci] correct the docs for casArray a little more. clarify that the returned element may be two different things

- - - - -
bbb07182 by Artem Pyanykh at 2019-04-21T03:36:21Z
testsuite: move tests related to linker under tests/rts/linker

- - - - -
6ba9f69b by Artem Pyanykh at 2019-04-21T03:36:21Z
testsuite: fix ifdef lint errors under tests/rts/linker

- - - - -
92b7ad68 by Ben Gamari at 2019-04-21T03:36:22Z
ErrUtils: Emit progress messages to eventlog

- - - - -
f1133bc0 by Ben Gamari at 2019-04-21T03:36:22Z
Emit GHC timing events to eventlog

- - - - -
e8bf1dfb by Matthew Pickering at 2019-04-21T03:36:22Z
Correct off by one error in ghci +c

Fixes #16569

- - - - -
dc63dc7f by Alp Mestanogullari at 2019-04-21T03:36:24Z
Hadrian: use the testsuite driver's config.haddock arg more correctly

4 haddock tests assume that .haddock files have been produced, by using the
'req_haddock' modifier. The testsuite driver assumes that this condition is
satisfied if 'config.haddock' is non-empty, but before this patch Hadrian was
always passing the path to where the haddock executable should be, regardless
of whether it is actually there or not.

Instead, we now pass an empty config.haddock when we can't find all of
<build root>/docs/html/libraries/<pkg>/<pkg>.haddock>, where <pkg> ranges over
array, base, ghc-prim, process and template-haskell, and pass the path
to haddock when all those file exists. This has the (desired) effect of skipping
the 4 tests (marked as 'missing library') when the docs haven't been built,
and running the haddock tests when they have.

- - - - -
acd3f3ca by Vladislav Zavialov at 2019-04-21T03:36:24Z
Stop misusing EWildPat in pattern match coverage checking

EWildPat is a constructor of HsExpr used in the parser to represent
wildcards in ambiguous positions:

* in expression context, EWildPat is turned into hsHoleExpr (see rnExpr)
* in pattern context, EWildPat is turned into WildPat (see checkPattern)

Since EWildPat exists solely for the needs of the parser, we could
remove it by improving the parser.

However, EWildPat has also been used for a different purpose since
8a50610: to represent patterns that the coverage checker cannot handle.
Not only this is a misuse of EWildPat, it also stymies the removal of
EWildPat.

- - - - -


30 changed files:

- .gitlab-ci.yml
- compiler/deSugar/Check.hs
- compiler/main/ErrUtils.hs
- compiler/prelude/primops.txt.pp
- docs/users_guide/8.10.1-notes.rst
- docs/users_guide/8.8.1-notes.rst
- ghc/GHCi/UI.hs
- ghc/GHCi/UI/Info.hs
- hadrian/src/Settings/Builders/RunTest.hs
- + testsuite/tests/ghci/scripts/T16569.hs
- + testsuite/tests/ghci/scripts/T16569.script
- + testsuite/tests/ghci/scripts/T16569.stdout
- testsuite/tests/ghci/scripts/all.T
- testsuite/tests/ghci/should_run/T15369.stdout
- testsuite/tests/rts/Makefile
- testsuite/tests/rts/all.T
- testsuite/tests/rts/LinkerUnload.hs → testsuite/tests/rts/linker/LinkerUnload.hs
- testsuite/tests/rts/linker/Makefile
- testsuite/tests/rts/T11223/Makefile → testsuite/tests/rts/linker/T11223/Makefile
- testsuite/tests/rts/T11223/T11223_link_order_a_b_2_fail.stderr → testsuite/tests/rts/linker/T11223/T11223_link_order_a_b_2_fail.stderr
- testsuite/tests/rts/T11223/T11223_link_order_a_b_2_fail.stderr-ws-32-mingw32 → testsuite/tests/rts/linker/T11223/T11223_link_order_a_b_2_fail.stderr-ws-32-mingw32
- testsuite/tests/rts/T11223/T11223_link_order_a_b_2_fail.stderr-ws-64-mingw32 → testsuite/tests/rts/linker/T11223/T11223_link_order_a_b_2_fail.stderr-ws-64-mingw32
- testsuite/tests/rts/T11223/T11223_link_order_a_b_succeed.stdout → testsuite/tests/rts/linker/T11223/T11223_link_order_a_b_succeed.stdout
- testsuite/tests/rts/T11223/T11223_link_order_b_a_2_succeed.stdout → testsuite/tests/rts/linker/T11223/T11223_link_order_b_a_2_succeed.stdout
- testsuite/tests/rts/T11223/T11223_link_order_b_a_succeed.stdout → testsuite/tests/rts/linker/T11223/T11223_link_order_b_a_succeed.stdout
- testsuite/tests/rts/T11223/T11223_simple_duplicate_lib.stderr → testsuite/tests/rts/linker/T11223/T11223_simple_duplicate_lib.stderr
- testsuite/tests/rts/T11223/T11223_simple_duplicate_lib.stderr-ws-32-mingw32 → testsuite/tests/rts/linker/T11223/T11223_simple_duplicate_lib.stderr-ws-32-mingw32
- testsuite/tests/rts/T11223/T11223_simple_duplicate_lib.stderr-ws-64-mingw32 → testsuite/tests/rts/linker/T11223/T11223_simple_duplicate_lib.stderr-ws-64-mingw32
- testsuite/tests/rts/T11223/T11223_simple_link.stdout → testsuite/tests/rts/linker/T11223/T11223_simple_link.stdout
- testsuite/tests/rts/T11223/T11223_simple_link_lib.stdout → testsuite/tests/rts/linker/T11223/T11223_simple_link_lib.stdout


The diff was not included because it is too large.


View it on GitLab: https://gitlab.haskell.org/ghc/ghc/compare/10468272bed125eb799f27215be29b91c1fde2f6...acd3f3ca18cb622d494d80dff5c3ea6d64dd02fd

-- 
View it on GitLab: https://gitlab.haskell.org/ghc/ghc/compare/10468272bed125eb799f27215be29b91c1fde2f6...acd3f3ca18cb622d494d80dff5c3ea6d64dd02fd
You're receiving this email because of your account on gitlab.haskell.org.


-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.haskell.org/pipermail/ghc-commits/attachments/20190420/748b8110/attachment.html>


More information about the ghc-commits mailing list