Skip to content

Commit e8a8d03

Browse files
committed
Test script adjustments for new CodeQL version
1 parent 21faa42 commit e8a8d03

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/build-codeql.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ on:
1414
workflow_dispatch:
1515

1616
env:
17-
CODEQL_VERSION: 2.21.2
17+
CODEQL_VERSION: 2.23.3
1818

1919
jobs:
2020
build:

src/drivers/test/build_create_analyze_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -400,7 +400,7 @@ def create_codeql_test_database(ql_test):
400400
source_dir=os.path.join(g_test_dir, "working\\"+ql_test.get_ql_name()+"\\")
401401
db_loc = os.path.join(test_db_dir, ql_test.get_ql_name()+"\\")
402402

403-
codeql_command = [codeql_path, "database", "create", "-l", "cpp", "-s", source_dir, "--threads=0", "-c", "msbuild /p:Platform=x64;UseNTIFS="+ql_test.get_use_ntifs()+
403+
codeql_command = [codeql_path, "database", "create", "-l", "cpp", "-s", source_dir, "--threads=0", "-c", "msbuild /p:Platform=x64 /p:UseNTIFS="+ql_test.get_use_ntifs()+
404404
" /t:rebuild " + source_dir + ql_test.get_template().split("\\")[-1] + ".sln", db_loc]
405405
print_conditionally(" - Database location: " + db_loc)
406406
print_conditionally(" - Source directory: " + source_dir)

0 commit comments

Comments
 (0)