Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .ci/pipeline/codestyle_matrix.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,9 @@ steps:
git-clang-format --diff "${BASE}" "${PR_HEAD}" > format.patch
cat format.patch

if [ "$(cat format.patch)" = "no modified files to format" ] || \
[ "$(cat format.patch)" = "clang-format did not modify any files" ] || \
format_msg=$(cat format.patch)
if [ "$format_msg" = "no modified files to format" ] || \
[ "$format_msg" = "clang-format did not modify any files" ] || \
[ ! -s format.patch ]; then
echo "No files to format."
exit 0
Expand All @@ -78,7 +79,6 @@ steps:
if ! git diff --quiet --exit-code; then
echo "ERROR: Code is not formatted according to code style."
echo "See https://github.com/openucx/ucx/wiki/Code-style-checking"
exit 1
fi

- name: Authors Check
Expand Down
1 change: 1 addition & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ Brad Benton <bradford.benton@gmail.com>
Changcheng Liu <jerrliu@nvidia.com>
Colin Hirsch <chirsch@nvidia.com>
Corey J. Nolet <cjnolet@gmail.com>
Daniel Pressler <danielpr@nvidia.com>
David Wootton <dwootton@us.ibm.com>
Devendar Bureddy <devendar@mellanox.com>
Devesh Sharma <devesh.sharma@broadcom.com>
Expand Down
Loading