mirror of
https://github.com/github/codeql.git
synced 2026-07-16 00:38:15 +02:00
12 lines
304 B
Python
12 lines
304 B
Python
import pathlib
|
|
|
|
|
|
def test(codeql, java_full, kotlinc_2_3_20):
|
|
java_srcs = " ".join([str(s) for s in pathlib.Path().glob("*.java")])
|
|
codeql.database.create(
|
|
command=[
|
|
f"javac {java_srcs} -d build",
|
|
"kotlinc -language-version 1.9 user.kt -cp build",
|
|
]
|
|
)
|