mirror of
https://boringssl.googlesource.com/boringssl
synced 2026-07-21 14:43:51 +00:00
2a5cd33a2a
Picks up https://github.com/google/benchmark/commit/d8db2f90b643eb28a12976beb4d57bcfb639911d This results in deprecation warnings with benchmark::internal::Benchmark so go ahead and fix those. Also add third_party/benchmark to .bazelignore. This stops `bazel test ...` from recursing in here. It looks like we previously suppressed copying some files, but we can avoid having to post-process the files this way. Change-Id: Idf20fce28153a450fe03e121d9bc0d601d43ec6c Reviewed-on: https://boringssl-review.googlesource.com/c/boringssl/+/88948 Auto-Submit: David Benjamin <davidben@google.com> Reviewed-by: Lily Chen <chlily@google.com> Commit-Queue: Lily Chen <chlily@google.com>
45 lines
1.1 KiB
YAML
45 lines
1.1 KiB
YAML
name: clang-tidy
|
|
|
|
on:
|
|
push: {}
|
|
pull_request: {}
|
|
|
|
env:
|
|
CMAKE_GENERATOR: Ninja
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
job:
|
|
name: run-clang-tidy
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
fail-fast: false
|
|
steps:
|
|
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
|
|
|
- name: install clang-tidy
|
|
run: sudo apt update && sudo apt -y install clang-tidy
|
|
|
|
- name: create build environment
|
|
run: cmake -E make_directory ${{ github.workspace }}/_build
|
|
|
|
- name: configure cmake
|
|
shell: bash
|
|
working-directory: ${{ github.workspace }}/_build
|
|
run: >
|
|
cmake $GITHUB_WORKSPACE
|
|
-DBENCHMARK_ENABLE_ASSEMBLY_TESTS=OFF
|
|
-DBENCHMARK_ENABLE_LIBPFM=OFF
|
|
-DBENCHMARK_DOWNLOAD_DEPENDENCIES=ON
|
|
-DCMAKE_C_COMPILER=clang
|
|
-DCMAKE_CXX_COMPILER=clang++
|
|
-DCMAKE_EXPORT_COMPILE_COMMANDS=ON
|
|
-DGTEST_COMPILE_COMMANDS=OFF
|
|
|
|
- name: run
|
|
shell: bash
|
|
working-directory: ${{ github.workspace }}/_build
|
|
run: run-clang-tidy -config-file=$GITHUB_WORKSPACE/.clang-tidy
|