-
Notifications
You must be signed in to change notification settings - Fork 8k
Verify bundled sources using CI - boost.context & uriparser #20438
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
mvorisek
wants to merge
14
commits into
php:master
Choose a base branch
from
mvorisek:verify_bundled_boost_context
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.
+332
−59
Open
Changes from 1 commit
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
0a3c2fe
add workflow & skeleton generator
mvorisek bcac56b
add download for boost.context
mvorisek 38b6741
unify/generate tmp_dir
mvorisek 20e42c1
add uriparser ci
mvorisek 2879594
rm original/duplicate src/UriConfig.h.in
mvorisek 8b72e08
fix outdated config/comment
mvorisek 323012a
patch config to minimize changes between the official config
mvorisek 623876d
adjust for rebase
mvorisek 653100d
"base" param for dorny/paths-filter is not used for PR
mvorisek 0a2d4f7
make gen executable
mvorisek 94cdb07
do not use "escapeshellarg" function as it generates different result…
mvorisek dfe4c8d
always use topmost/repo's .git as "--git-dir"
mvorisek 9d633a2
run "Detect changed files" step only for push/PR events
mvorisek b92b445
fix typo
mvorisek 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,13 +1,16 @@ | ||
| #!/bin/sh | ||
| set -ex | ||
|
|
||
| cd "$(dirname "$0")/../../$1" | ||
| # use the repo root directory as "--git-dir" | ||
| cd "$(dirname "$0")/../.." | ||
|
|
||
| dir="$1" | ||
|
|
||
| # notify git about untracked (except ignored) files | ||
| git add -N . | ||
| git add -N "$dir" | ||
|
|
||
| # display overview of changed files | ||
| git status . | ||
| git status "$dir" | ||
|
|
||
| # display diff of working directory vs HEAD commit and set exit code | ||
| git diff -a --exit-code HEAD . | ||
| git diff -a --exit-code HEAD "$dir" | ||
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 is important as the original
cd "$(dirname "$0")/../../$1"did not detected any changes in case of the checked directory was containing.git.Example:
git clone https://github.com/derickr/timelib.git ext/date/lib