mirror of
https://github.com/github/codeql.git
synced 2025-12-16 16:53:25 +01:00
21 lines
694 B
Python
Executable File
21 lines
694 B
Python
Executable File
#!/bin/env python3
|
|
|
|
import subprocess
|
|
import pathlib
|
|
import shutil
|
|
import sys
|
|
|
|
this_dir = pathlib.Path(__file__).resolve().parent
|
|
|
|
cargo = shutil.which("cargo")
|
|
assert cargo, "no cargo binary found on `PATH`"
|
|
|
|
runs = []
|
|
runs.append(subprocess.run([cargo, "fmt", "--all", "--quiet"], cwd=this_dir))
|
|
|
|
for manifest in this_dir.rglob("Cargo.toml"):
|
|
if not manifest.is_relative_to(this_dir / "ql") and not manifest.is_relative_to(this_dir / "integration-tests"):
|
|
runs.append(subprocess.run([cargo, "clippy", "--fix", "--allow-dirty", "--allow-staged", "--quiet", "--", "-D", "warnings"],
|
|
cwd=manifest.parent))
|
|
sys.exit(max(r.returncode for r in runs))
|