Swift: update integration tests to not use the integrated driver

This commit is contained in:
Jeroen Ketema
2026-07-02 14:36:34 +02:00
parent 662c7b08e8
commit 8ecdb2cde0
2 changed files with 4 additions and 2 deletions

View File

@@ -7,5 +7,6 @@ import pytest
def test(codeql, swift, xcode_16):
codeql.database.create(
command="xcodebuild build "
"CODE_SIGNING_REQUIRED=NO CODE_SIGNING_ALLOWED=NO",
"CODE_SIGNING_REQUIRED=NO CODE_SIGNING_ALLOWED=NO "
"SWIFT_USE_INTEGRATED_DRIVER=NO",
)

View File

@@ -9,5 +9,6 @@ def test(codeql, swift, xcode_all):
command="xcodebuild build "
"-project codeql-swift-autobuild-test.xcodeproj "
"-target codeql-swift-autobuild-test "
"CODE_SIGNING_REQUIRED=NO CODE_SIGNING_ALLOWED=NO",
"CODE_SIGNING_REQUIRED=NO CODE_SIGNING_ALLOWED=NO "
"SWIFT_USE_INTEGRATED_DRIVER=NO",
)