mirror of
https://github.com/occ-ai/obs-localvocal
synced 2024-11-08 03:08:07 +00:00
62 lines
2.2 KiB
YAML
62 lines
2.2 KiB
YAML
name: Run clang-format
|
|
description: Runs clang-format and checks for any changes introduced by it
|
|
inputs:
|
|
failCondition:
|
|
description: Controls whether failed checks also fail the workflow run
|
|
required: false
|
|
default: 'never'
|
|
workingDirectory:
|
|
description: Working directory for checks
|
|
required: false
|
|
default: ${{ github.workspace }}
|
|
runs:
|
|
using: composite
|
|
steps:
|
|
- name: Check Runner Operating System 🏃♂️
|
|
if: runner.os == 'Windows'
|
|
shell: bash
|
|
run: |
|
|
: Check Runner Operating System 🏃♂️
|
|
echo "::notice::run-clang-format action requires a macOS-based or Linux-based runner."
|
|
exit 2
|
|
|
|
- name: Install Dependencies 🛍️
|
|
if: runner.os == 'Linux'
|
|
shell: bash
|
|
run: |
|
|
: Install Dependencies 🛍️
|
|
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@13/bin" >> $GITHUB_PATH
|
|
brew install --quiet zsh
|
|
echo ::endgroup::
|
|
|
|
- name: Run clang-format 🐉
|
|
id: result
|
|
shell: zsh --no-rcs --errexit --pipefail {0}
|
|
working-directory: ${{ inputs.workingDirectory }}
|
|
env:
|
|
GITHUB_EVENT_FORCED: ${{ github.event.forced }}
|
|
GITHUB_REF_BEFORE: ${{ github.event.before }}
|
|
run: |
|
|
: Run clang-format 🐉
|
|
if (( ${+RUNNER_DEBUG} )) setopt XTRACE
|
|
|
|
local -a changes=($(git diff --name-only HEAD~1 HEAD))
|
|
case ${GITHUB_EVENT_NAME} {
|
|
pull_request) changes=($(git diff --name-only origin/${GITHUB_BASE_REF} HEAD)) ;;
|
|
push) if [[ ${GITHUB_EVENT_FORCED} != true ]] changes=($(git diff --name-only ${GITHUB_REF_BEFORE} HEAD)) ;;
|
|
*) ;;
|
|
}
|
|
|
|
if (( ${changes[(I)(*.c|*.h|*.cpp|*.hpp|*.m|*.mm)]} )) {
|
|
echo ::group::Install clang-format-13
|
|
brew install --quiet obsproject/tools/clang-format@13
|
|
echo ::endgroup::
|
|
|
|
echo ::group::Run clang-format-13
|
|
./build-aux/run-clang-format --fail-${{ inputs.failCondition }} --check
|
|
echo ::endgroup::
|
|
}
|