CI: Update clang-format to 22.1.3

This commit is contained in:
PatTheMav
2026-06-12 17:22:50 -04:00
committed by Ryan Foster
parent ef97d2eabd
commit fe522d431e
2 changed files with 11 additions and 12 deletions
+4 -4
View File
@@ -35,7 +35,7 @@ runs:
echo ::group::Install Dependencies
eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"
echo "/home/linuxbrew/.linuxbrew/bin:/home/linuxbrew/.linuxbrew/sbin" >> $GITHUB_PATH
echo "/home/linuxbrew/.linuxbrew/opt/clang-format@19/bin" >> $GITHUB_PATH
echo "/home/linuxbrew/.linuxbrew/opt/clang-format@22/bin" >> $GITHUB_PATH
brew install --quiet zsh
echo ::endgroup::
@@ -50,11 +50,11 @@ runs:
: Run clang-format 🐉
if (( ${+RUNNER_DEBUG} )) setopt XTRACE
print ::group::Install clang-format-19
brew install --quiet obsproject/tools/clang-format@19
print ::group::Install clang-format-22
brew install --quiet obsproject/tools/clang-format@22
print ::endgroup::
print ::group::Run clang-format-19
print ::group::Run clang-format-22
local -a changes=(${(s:,:)CHANGED_FILES//[\[\]\'\"]/})
./build-aux/run-clang-format --fail-${{ inputs.failCondition }} --check ${changes}
print ::endgroup::