mirror of
https://github.com/github/codeql.git
synced 2026-06-10 23:41:09 +02:00
This harmonizes Swift integration tests with the rest of the repository, to prepare for the internal integration test runner to run them. The stripped down runner is kept compatible, so that current CI can still use it now. Maybe it will be kept for developer use. This PR includes: * moving the integration tests inside `ql` * editing `qlpack.yml` so that the internal runner can use it * change database directory to be `test-db` rather than `db`
10 lines
300 B
Python
10 lines
300 B
Python
from create_database_utils import *
|
|
|
|
run_codeql_database_create([
|
|
'xcodebuild clean',
|
|
'xcodebuild build '
|
|
'-project codeql-swift-autobuild-test.xcodeproj '
|
|
'-target codeql-swift-autobuild-test '
|
|
'CODE_SIGNING_REQUIRED=NO CODE_SIGNING_ALLOWED=NO',
|
|
], lang='swift', keep_trap=True)
|