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
i#7344: Skip format checks if DISABLE_FORMAT_CHECKS is present in commit messages. (#7361)
Skip clang-format, vera and tab checks if DISABLE_FORMAT_CHECKS appears
in one of the commit messages.
This feature enables us to copy code over without format changes as a
base line and use subsequent PRs to fix format issues. And it is useful
to add .patch files or other files where tabs are part of the format.
Format checks can also be disabled by setting DISABLE_FORMAT_CHECKS to
ON, for example,
cmake -DDISABLE_FORMAT_CHECKS=ON ...
Test: I added DISABLE_FORMAT_CHECKS as part of a commit message to
#7304 and verified format
checks were disabled except aarch64 build.
"gh api" is not installed on the aarchxx machines. Adding "gh" to the
install list didn't work, and manually installing gh or github-cli
failed using tmate. I have added a TODO in
.github/workflows/ci-aarchxx.yml to add the support once "gh api" is
installed.
The original PR #7345 was reverted because
github.event.pull_request._links.commits.href is absent in case of
push/merge.
This PR handles the push/merge case by using
```
if ${{ contains(toJSON(github.event.commits.*.message), 'DISABLE_FORMAT_CHECKS') }}
```
for push.
Test:
- I added DISABLE_FORMAT_CHECKS as part of a commit message in a clone
repository, ivankyluk/dynamorio, to verify format checks were disable
when DISABLE_FORMAT_CHECKS was added as a commit message. And formats
checks were enabled when DISABLE_FORMAT_CHECKS was absent.
- I used the cloned repository to test the push/merge event.
Issue: #7344
0 commit comments