Skip to content
Snippets Groups Projects
Commit fda71213 authored by Sergey Kosukhin's avatar Sergey Kosukhin
Browse files

ci: handle problems with patch generation

parent 338c2870
No related branches found
No related tags found
1 merge request!82CI: generate style artifact
Pipeline #97301 passed
......@@ -85,12 +85,16 @@ Check style:
- |
# pre-commit run --all-files
pre-commit run --color=always --all-files || {
git diff --ignore-submodules --patch-with-raw > "${STYLE_PATCH}"
test -s "${STYLE_PATCH}" && {
printf "${RED}At least some of the issues can be resolved with the patch (see artifacts):
git diff --ignore-submodules --patch-with-raw > "${STYLE_PATCH}" && {
test -s "${STYLE_PATCH}" && {
printf "${RED}At least some of the issues can be resolved with the patch (see artifacts):
${CI_JOB_URL}/artifacts/raw/${STYLE_PATCH}.\n${DEFAULT}"
} || {
printf "${RED}The issues cannot be resolved with a patch.\n${DEFAULT}"
rm -f "${STYLE_PATCH}"
}
} || {
printf "${RED}The issues cannot be resolved with a patch.\n${DEFAULT}"
printf "${RED}Failed to generate a patch file.\n${DEFAULT}"
rm -f "${STYLE_PATCH}"
}
printf "${RED}You can reproduce this check locally with \`pre-commit run --all-files\`.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment