We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 415b761 commit 27d4696Copy full SHA for 27d4696
.github/workflows/build.yml
@@ -230,6 +230,13 @@ jobs:
230
working-directory: ${{ env.GITHUB_WORKSPACE }}
231
run: cmake . --preset ${{ matrix.preset }} -DCMAKE_DISABLE_PRECOMPILE_HEADERS=On
232
233
+ - name: Remove `.modmap`s from compile commands
234
+ run: |
235
+ (Get-Content "out\build\${{ matrix.preset }}\compile_commands.json") `
236
+ -replace "@CMakeFiles.+?\.modmap", "" `
237
+ | Set-Content `
238
+ -Path "out\build\${{ matrix.preset }}\compile_commands.json"
239
+
240
- name: Run clang-tidy
241
242
run: |
0 commit comments