-
Notifications
You must be signed in to change notification settings - Fork 10
37 lines (32 loc) · 1.09 KB
/
clangtidy.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# SPDX-License-Identifier: MIT
# Copyright (C) 2025 Advanced Micro Devices, Inc. All rights reserved.
name: Clang-Tidy Review
on:
pull_request:
types: [opened, synchronize]
branches: main-ge
workflow_dispatch:
jobs:
clangtidy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Fetch base branch
run: |
git fetch origin ${{ github.base_ref }}
- name: Post clang-tidy comments
#uses: ZedThree/clang-tidy-review@v0.20.1
uses: stsoe/clang-tidy-review@6d2aee59f56cf41f32baa4123cc636fff8ef4eb7
with:
build_dir: build/Release
apt_packages: pkg-config,libelf-dev,libboost-dev,pylint,elfutils
cmake: cmake -B build/Release -DCMAKE_BUILD_TYPE=Release -DCMAKE_EXPORT_COMPILE_COMMANDS=ON
# disable default checks and rely on closest .clangtidy
clang_tidy_checks: ''
token: ${{ secrets.PR_COMMENTS }}
# If there are any comments, fail the check
- if: ${{ failure() && steps.clang-tidy.conclusion == 'failure' }}
run: exit 1