Remove building of shared library for aiebu #13
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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: | |
submodules: recursive | |
fetch-depth: 0 | |
- name: Create clang-tidy review | |
id: review | |
uses: stsoe/clang-tidy-review@6d2aee59f56cf41f32baa4123cc636fff8ef4eb7 | |
with: | |
build_dir: build/Release | |
apt_packages: pkg-config,libelf-dev,libboost-dev,pylint,elfutils | |
cmake_command: cmake -B build/Release -DCMAKE_BUILD_TYPE=Release -DCMAKE_EXPORT_COMPILE_COMMANDS=ON | |
# disable default checks and rely on closest .clangtidy | |
clang_tidy_checks: '' | |
split_workflow: true | |
- name: Upload clang-tidy review | |
uses: stsoe/clang-tidy-review/upload@6d2aee59f56cf41f32baa4123cc636fff8ef4eb7 | |
id: upload-review |