Skip to content

[eigen] add eigen backend indirection #2467

[eigen] add eigen backend indirection

[eigen] add eigen backend indirection #2467

Workflow file for this run

name: 'ClangTidy'
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
schedule:
- cron: '0 0 * * */5'
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-24.04
steps:
- name: Harden Runner
uses: step-security/harden-runner@0080882f6c36860b6ba35c610c98ce87d4e2f26f # v2.10.2
with:
egress-policy: audit
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: 'Configure'
env:
CXX: 'clang++-18'
CC: 'clang-18'
run: cmake -S . -B 'build' -DCMAKE_EXPORT_COMPILE_COMMANDS=ON
- name: Verify
run: |
cat build/compile_commands.json
FILES=`find . \
-type f -path './build/benchmark/*.cpp' -o \
-type f -path './sample/*.cpp' -o \
-type f -path './source/*.cpp' -o \
-type f -path './test/*.cpp'`
echo $FILES
clang-tidy-18 -p 'build' $FILES