-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
6 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -142,6 +142,12 @@ jobs: | |
run: | | ||
cmake -B build -DCMAKE_CONFIGURATION_TYPES=${{ matrix.config }} | ||
# Compile deps before initializing codeql, to avoid unnecessary analysis. | ||
# and for iwyu and clang-analayzer, SDL2 apparently generates some code at build time, which breaks the analyzers if we don't compile | ||
- name: Compile Dependencies | ||
run: | | ||
cmake --build build --parallel --config ${{ matrix.config }} --target compile-osp-magnum-deps compile-test-deps | ||
- name: Initialize MSVC Code Analysis | ||
uses: microsoft/[email protected] | ||
# Provide a unique ID to access the sarif output path | ||
|