mirror of
https://github.com/oven-sh/bun
synced 2026-02-02 15:08:46 +00:00
61 lines
1.4 KiB
YAML
61 lines
1.4 KiB
YAML
name: clang-format
|
|
|
|
permissions:
|
|
contents: write
|
|
|
|
on:
|
|
workflow_call:
|
|
workflow_dispatch:
|
|
pull_request:
|
|
paths:
|
|
- ".github/workflows/clang-format.yml"
|
|
- "**.clang-format"
|
|
- "package.json"
|
|
- "scripts/**"
|
|
- "cmake/**"
|
|
- "src/**/*.c"
|
|
- "src/**/*.cpp"
|
|
- "src/**/*.h"
|
|
- "packages/**/*.c"
|
|
- "packages/**/*.cpp"
|
|
- "packages/**/*.h"
|
|
|
|
env:
|
|
BUN_VERSION: "1.1.27"
|
|
LLVM_VERSION: "18.1.8"
|
|
LLVM_VERSION_MAJOR: "18"
|
|
|
|
jobs:
|
|
clang-format:
|
|
name: clang-format
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
with:
|
|
sparse-checkout: |
|
|
.github
|
|
.clang-format
|
|
package.json
|
|
scripts
|
|
cmake
|
|
src
|
|
packages
|
|
- name: Setup Bun
|
|
uses: ./.github/actions/setup-bun
|
|
with:
|
|
bun-version: ${{ env.BUN_VERSION }}
|
|
- name: Install LLVM
|
|
run: |
|
|
curl -fsSL https://apt.llvm.org/llvm.sh | sudo bash -s -- ${{ env.LLVM_VERSION_MAJOR }} all
|
|
- name: Clang Format
|
|
env:
|
|
ENABLE_CCACHE: OFF
|
|
LLVM_VERSION: ${{ env.LLVM_VERSION }}
|
|
run: |
|
|
bun run clang-format:diff
|
|
- name: Commit
|
|
uses: stefanzweifel/git-auto-commit-action@v5
|
|
with:
|
|
commit_message: "`bun run clang-format`"
|