Skip to content

Commit 8b81d65

Browse files
committed
temporary disable of clang-format CI check due to bugs
1 parent 4d7213a commit 8b81d65

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/clang-format-check.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ jobs:
4343
else
4444
status=$?
4545
fi
46+
4647
if [ "$status" -eq 0 ]; then
4748
echo "✅ Code is properly formatted!"
4849
exit 0
@@ -56,10 +57,14 @@ jobs:
5657
echo ""
5758
echo "Please run the following command locally on your feature branch and commit the changes:"
5859
echo " git-clang-format-15 $BASE_REF"
59-
exit 1
60+
exit 0
61+
# TEMPORARY DISABLE DUE TO BUGS
62+
#exit 1
6063
else
6164
echo "❌ git-clang-format-15 failed with exit code $status"
6265
echo "Output (if any):"
6366
cat "$DIFF_FILE"
64-
exit 1
67+
exit 0
68+
# TEMPORARY DISABLE DUE TO BUGS
69+
#exit 1
6570
fi

0 commit comments

Comments
 (0)