mirror of
https://github.com/github/codeql.git
synced 2025-12-17 01:03:14 +01:00
18 lines
517 B
Makefile
18 lines
517 B
Makefile
import '../lib.just'
|
|
import "../../ql/swift/ql/justfile"
|
|
|
|
install: (_bazel "run" "@codeql//swift:install")
|
|
|
|
[group('build')]
|
|
build: (_build_dist "swift")
|
|
|
|
generate: (_bazel "run" "@codeql//swift/codegen")
|
|
|
|
format ARGS=".": (_format_cpp ARGS)
|
|
|
|
[group('test')]
|
|
language-tests *EXTRA_ARGS: (_language_tests EXTRA_ARGS source_dir() 'ql/test')
|
|
|
|
[group('test')]
|
|
extra-tests: (_sembuild "target/test/check-queries-swift") (_sembuild "target/test/check-db-upgrades-swift") (_sembuild "target/test/check-db-downgrades-swift")
|