mirror of
https://github.com/github/codeql.git
synced 2025-12-17 01:03:14 +01:00
16 lines
353 B
Makefile
16 lines
353 B
Makefile
import '../justfile'
|
|
|
|
install: (_bazel "run" "@codeql//rust:install")
|
|
|
|
[group('build')]
|
|
build: generate (_build "rust")
|
|
|
|
generate: (_bazel "run" "@codeql//rust/codegen")
|
|
|
|
lint: (_run "python3" "lint.py")
|
|
|
|
format: (_run "python3" "lint.py" "--format-only")
|
|
|
|
[group('test')]
|
|
language-tests *EXTRA_ARGS: (_language_tests EXTRA_ARGS source_dir() 'ql/test')
|