-
Notifications
You must be signed in to change notification settings - Fork 1
Gate the main test suite on test-build; add build-results; require ON_ERROR_STOP in test/install #109
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
jnasbyupgrade
wants to merge
9
commits into
Postgres-Extensions:master
Choose a base branch
from
jnasbyupgrade:fix-test-build-ordering
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Gate the main test suite on test-build; add build-results; require ON_ERROR_STOP in test/install #109
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
4916368
Gate the main test suite on test-build; add build-results; require ON…
jnasbyupgrade c9adf33
Merge branch 'master' into fix-test-build-ordering
jnasbyupgrade ec46fba
base.mk: document why ON_ERROR_STOP can't be forced via psql -v
jnasbyupgrade e444b08
Trim review-feedback comments in base.mk and HISTORY.asc
jnasbyupgrade 184e8c1
build-results: reuse test-build instead of duplicating its steps
jnasbyupgrade 9b61026
HISTORY.asc: drop test-build gating entry as user-invisible
jnasbyupgrade f941b19
Merge remote-tracking branch 'upstream/master' into fix-test-build-or…
jnasbyupgrade 08dcfe6
ci.yml: give a real test signal on every check-test-pr failure path
jnasbyupgrade bbc9928
ci.yml: run test despite check-test-pr's own failure
jnasbyupgrade File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This new NOTE (and the similar WARNING added at README.asc#L195-L197) mixes literal
*.outglobs with asciidoc*emphasis*markup in the same sentence ("...test/build/expected/*.out... a file that's supposed to show an error"). Asciidoctor parses the*in the glob as an emphasis opener, and the committedREADME.htmlin this PR shows the result is genuinely garbled — not just a theoretical parsing quirk:The glob's asterisk is lost (renders as
test/build/expected/.out), and the bold run-on continues bolding the rest of the sentence. The line 196 WARNING has the same problem plus a stray literal backtick leaking into the output beforeON_ERROR_STOP, and ~45 words of prose incorrectly wrapped inside a<code>span.Fix: use passthrough/literal monospace so no substitution runs inside the glob, e.g.
`+test/build/expected/*.out+`and`+test/install/*.out+`, then regenerateREADME.html.