Skip to content

Commit 53577be

Browse files
authored
Merge pull request #8487 from The-OpenROAD-Project-staging/fix-clang-tidy
Fix clang tidy workflow
2 parents af628fc + f8833ae commit 53577be

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/github-actions-clang-tidy.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,26 +3,26 @@ name: clang-tidy-review
33
on:
44
pull_request:
55
branches:
6-
- master
6+
- master
77

88
jobs:
99
Clang-Tidy:
1010
runs-on: ${{ vars.USE_SELF_HOSTED == 'true' && 'self-hosted' || 'ubuntu-latest' }}
1111
steps:
1212
- name: Checkout repository
13-
uses: actions/checkout@v4
13+
uses: actions/checkout@v5
1414
with:
15-
submodules: 'recursive'
15+
submodules: "recursive"
1616
- name: ClangTidy Gen
1717
uses: The-OpenROAD-Project/clang-tidy-review@master
1818
id: review
1919
with:
20-
build_dir: './build'
20+
build_dir: "./build"
2121
cmake_command: cmake . -B build
22-
config_file: '.clang-tidy'
22+
config_file: ".clang-tidy"
2323
exclude: "*/codeGenerator/templates/*,*/third-party/*"
2424
split_workflow: true
25-
apt_packages: libomp-15-dev,libfl-dev
25+
apt_packages: libomp-15-dev,libfl-dev,libyaml-cpp-dev
2626
- uses: The-OpenROAD-Project/clang-tidy-review/upload@master
2727
id: upload-review
2828
- name: Correct Build Directory Ownership

0 commit comments

Comments
 (0)