Merge branch 'main' into update-bundle/codeql-bundle-v2.21.2

This commit is contained in:
Nick Rolfe 2025-05-01 10:28:59 +01:00 committed by GitHub
commit 5db14d0471
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
657 changed files with 498433 additions and 4234 deletions

View file

@ -42,6 +42,13 @@ export class CodeQLAnalysisError extends Error {
}
export interface QueriesStatusReport {
/**
* Time taken in ms to run queries for actions (or undefined if this language was not analyzed).
*
* The "builtin" designation is now outdated with the move to CLI config parsing: this is the time
* taken to run _all_ the queries.
*/
analyze_builtin_queries_actions_duration_ms?: number;
/**
* Time taken in ms to run queries for cpp (or undefined if this language was not analyzed).
*
@ -98,6 +105,8 @@ export interface QueriesStatusReport {
*/
analyze_builtin_queries_swift_duration_ms?: number;
/** Time taken in ms to interpret results for actions (or undefined if this language was not analyzed). */
interpret_results_actions_duration_ms?: number;
/** Time taken in ms to interpret results for cpp (or undefined if this language was not analyzed). */
interpret_results_cpp_duration_ms?: number;
/** Time taken in ms to interpret results for csharp (or undefined if this language was not analyzed). */