1
0
Fork 0

Speed improvements to qmk find. (#24385)

This commit is contained in:
Nick Brassel 2024-11-08 15:57:22 +11:00 committed by GitHub
parent 4f9ef90754
commit 580d18d2e9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 38 additions and 9 deletions

View file

@ -20,6 +20,8 @@ def mass_compile_targets(targets: List[BuildTarget], clean: bool, dry_run: bool,
if len(targets) == 0:
return
os.environ.setdefault('SKIP_SCHEMA_VALIDATION', '1')
make_cmd = find_make()
builddir = Path(QMK_FIRMWARE) / '.build'
makefile = builddir / 'parallel_kb_builds.mk'