fix GetVariableOffset in cases of multi-level and multiple inheritance
          
            #916
        
      Workflow file for this run
  
    
      This file contains hidden or 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
    
  
  
    
  | name: clang-tidy-review | |
| on: | |
| pull_request: | |
| paths: | |
| - '**.h' | |
| - '**.cpp' | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number }} | |
| cancel-in-progress: true | |
| jobs: | |
| review: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - name: Checkout PR branch | |
| uses: actions/checkout@v4 | |
| - name: Setup Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.11" | |
| - name: Install LLVM and Clang | |
| uses: KyleMayes/[email protected] | |
| with: | |
| version: "17.0.6" | |
| - name: install lit | |
| run: pip install lit | |
| - name: Run clang-tidy | |
| uses: ZedThree/[email protected] | |
| id: review | |
| with: | |
| build_dir: build | |
| apt_packages: cmake,libxml2,libxml2-dev,libtinfo-dev,zlib1g-dev,libzstd-dev | |
| split_workflow: true | |
| config_file: .clang-tidy | |
| cmake_command: > | |
| cmake . -B build -DCMAKE_BUILD_TYPE="Release" | |
| -DCMAKE_C_COMPILER="$GITHUB_WORKSPACE/llvm/bin/clang" | |
| -DCMAKE_CXX_COMPILER="$GITHUB_WORKSPACE/llvm/bin/clang++" | |
| -DUSE_CLING=OFF | |
| -DUSE_REPL=ON | |
| -DLLVM_DIR="$GITHUB_WORKSPACE/llvm" | |
| -DBUILD_SHARED_LIBS=ON | |
| -DCMAKE_EXPORT_COMPILE_COMMANDS=ON | |
| - name: Upload artifacts | |
| uses: ZedThree/clang-tidy-review/[email protected] |