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 029a382 commit b35d032Copy full SHA for b35d032
scripts/matrix_testing/Config.ps1
@@ -1,3 +1,5 @@
1
+Import-Module -Name "$PSScriptRoot/../PSCodingStandards/CodingStandards"
2
+
3
$COMPILER_MAPPINGS = @{
4
"cpp" = @{
5
"clang" = "clang++";
@@ -27,7 +29,7 @@ $COMPILER_ARGS = @{
27
29
28
30
}
31
-$REQUIRED_CODEQL_VERSION = "2.9.4"
32
+$REQUIRED_CODEQL_VERSION = (Get-Content (Join-Path (Get-RepositoryRoot) "supported_codeql_configs.json") | ConvertFrom-Json).supported_environment.codeql_cli
33
34
35
$REPORT_QUERY = @"
0 commit comments