2023-01-04 10:10:18 +06:00
""" Compile all keyboards.
This will compile everything in parallel , for testing purposes .
"""
import os
2023-11-15 11:24:54 +06:00
from typing import List
2023-01-04 10:10:18 +06:00
from pathlib import Path
from subprocess import DEVNULL
from milc import cli
2024-08-12 18:34:22 +06:00
import shlex
2023-01-04 10:10:18 +06:00
from qmk . constants import QMK_FIRMWARE
2023-11-15 11:24:54 +06:00
from qmk . commands import find_make , get_make_parallel_args , build_environment
2023-09-29 02:48:20 +06:00
from qmk . search import search_keymap_targets , search_make_targets
2023-11-15 11:24:54 +06:00
from qmk . build_targets import BuildTarget , JsonKeymapBuildTarget
2024-06-15 15:37:47 +06:00
from qmk . util import maybe_exit_config
2023-01-04 10:10:18 +06:00
2023-11-15 11:24:54 +06:00
def mass_compile_targets ( targets : List [ BuildTarget ] , clean : bool , dry_run : bool , no_temp : bool , parallel : int , * * env ) :
2023-09-29 02:48:20 +06:00
if len ( targets ) == 0 :
return
2023-01-04 10:10:18 +06:00
2023-11-15 11:24:54 +06:00
make_cmd = find_make ( )
2023-01-04 10:10:18 +06:00
builddir = Path ( QMK_FIRMWARE ) / ' .build '
makefile = builddir / ' parallel_kb_builds.mk '
2023-09-29 02:48:20 +06:00
if dry_run :
2023-09-22 08:12:20 +06:00
cli . log . info ( ' Compilation targets: ' )
2023-11-15 11:24:54 +06:00
for target in sorted ( targets , key = lambda t : ( t . keyboard , t . keymap ) ) :
2024-08-12 18:34:22 +06:00
extra_args = ' ' . join ( [ f " -e { shlex . quote ( f ' { k } = { v } ' ) } " for k , v in target . extra_args . items ( ) ] )
cli . log . info ( f " {{ fg_cyan }} qmk compile -kb { target . keyboard } -km { target . keymap } { extra_args } {{ fg_reset }} " )
2023-09-22 08:12:20 +06:00
else :
2023-09-29 02:48:20 +06:00
if clean :
cli . run ( [ make_cmd , ' clean ' ] , capture_output = False , stdin = DEVNULL )
2023-09-22 08:12:20 +06:00
builddir . mkdir ( parents = True , exist_ok = True )
with open ( makefile , " w " ) as f :
2023-11-15 11:24:54 +06:00
for target in sorted ( targets , key = lambda t : ( t . keyboard , t . keymap ) ) :
keyboard_name = target . keyboard
keymap_name = target . keymap
2024-08-12 18:34:22 +06:00
keyboard_safe = keyboard_name . replace ( ' / ' , ' _ ' )
target_filename = target . target_name ( * * env )
2023-11-15 11:24:54 +06:00
target . configure ( parallel = 1 ) # We ignore parallelism on a per-build basis as we defer to the parent make invocation
target . prepare_build ( * * env ) # If we've got json targets, allow them to write out any extra info to .build before we kick off `make`
command = target . compile_command ( * * env )
command [ 0 ] = ' +@$(MAKE) ' # Override the make so that we can use jobserver to handle parallelism
2024-08-12 18:34:22 +06:00
extra_args = ' _ ' . join ( [ f " { k } _ { v } " for k , v in target . extra_args . items ( ) ] )
2023-09-22 08:12:20 +06:00
build_log = f " { QMK_FIRMWARE } /.build/build.log. { os . getpid ( ) } . { keyboard_safe } . { keymap_name } "
failed_log = f " { QMK_FIRMWARE } /.build/failed.log. { os . getpid ( ) } . { keyboard_safe } . { keymap_name } "
2024-08-12 18:34:22 +06:00
target_suffix = ' '
if len ( extra_args ) > 0 :
build_log + = f " . { extra_args } "
failed_log + = f " . { extra_args } "
target_suffix = f " _ { extra_args } "
2023-01-04 10:10:18 +06:00
# yapf: disable
f . write (
f """ \
2024-08-12 18:34:22 +06:00
. PHONY : { target_filename } { target_suffix } _binary
all : { target_filename } { target_suffix } _binary
{ target_filename } { target_suffix } _binary :
2023-09-23 09:07:38 +06:00
@rm - f " {build_log} " | | true
@echo " Compiling QMK Firmware for target: ' {keyboard_name} : {keymap_name} ' ... " >> " {build_log} "
2023-11-15 11:24:54 +06:00
{ ' ' . join ( command ) } \\
2023-09-23 09:07:38 +06:00
>> " {build_log} " 2 > & 1 \\
| | cp " {build_log} " " {failed_log} "
2024-02-16 20:34:43 +06:00
@ { { grep ' \\ [ERRORS \\ ] ' " {build_log} " > / dev / null 2 > & 1 & & printf " Build %-64s \\ e[1;31m[ERRORS] \\ e[0m \\ n " " {keyboard_name} : {keymap_name} " ; } } \\
| | { { grep ' \\ [WARNINGS \\ ] ' " {build_log} " > / dev / null 2 > & 1 & & printf " Build %-64s \\ e[1;33m[WARNINGS] \\ e[0m \\ n " " {keyboard_name} : {keymap_name} " ; } } \\
| | printf " Build %-64s \\ e[1;32m[OK] \\ e[0m \\ n " " {keyboard_name} : {keymap_name} "
2023-09-23 09:07:38 +06:00
@rm - f " {build_log} " | | true
""" # noqa
2023-01-04 10:10:18 +06:00
)
# yapf: enable
2023-09-29 02:48:20 +06:00
if no_temp :
2023-09-22 08:12:20 +06:00
# yapf: disable
f . write (
f """ \
2024-08-12 18:34:22 +06:00
@rm - rf " {QMK_FIRMWARE} /.build/ {target_filename} .elf " 2 > / dev / null | | true
@rm - rf " {QMK_FIRMWARE} /.build/ {target_filename} .map " 2 > / dev / null | | true
@rm - rf " {QMK_FIRMWARE} /.build/obj_ {target_filename} " | | true
2023-09-23 09:07:38 +06:00
""" # noqa
2023-09-22 08:12:20 +06:00
)
# yapf: enable
f . write ( ' \n ' )
2023-11-28 02:53:43 +06:00
cli . run ( [ find_make ( ) , * get_make_parallel_args ( parallel ) , ' -f ' , makefile . as_posix ( ) , ' all ' ] , capture_output = False , stdin = DEVNULL )
2023-01-04 10:10:18 +06:00
2023-09-22 08:12:20 +06:00
# Check for failures
failures = [ f for f in builddir . glob ( f ' failed.log. { os . getpid ( ) } .* ' ) ]
if len ( failures ) > 0 :
return False
2023-09-29 02:48:20 +06:00
@cli.argument ( ' builds ' , nargs = ' * ' , arg_only = True , help = " List of builds in form <keyboard>:<keymap> to compile in parallel. Specifying this overrides all other target search options. " )
@cli.argument ( ' -t ' , ' --no-temp ' , arg_only = True , action = ' store_true ' , help = " Remove temporary files during build. " )
@cli.argument ( ' -j ' , ' --parallel ' , type = int , default = 1 , help = " Set the number of parallel make jobs; 0 means unlimited. " )
@cli.argument ( ' -c ' , ' --clean ' , arg_only = True , action = ' store_true ' , help = " Remove object files before compiling. " )
@cli.argument ( ' -n ' , ' --dry-run ' , arg_only = True , action = ' store_true ' , help = " Don ' t actually build, just show the commands to be run. " )
@cli.argument (
' -f ' ,
' --filter ' ,
arg_only = True ,
action = ' append ' ,
default = [ ] ,
help = # noqa: `format-python` and `pytest` don't agree here.
" Filter the list of keyboards based on the supplied value in rules.mk. Matches info.json structure, and accepts the formats ' features.rgblight=true ' or ' exists(matrix_pins.direct) ' . May be passed multiple times, all filters need to match. Value may include wildcards such as ' * ' and ' ? ' . " # noqa: `format-python` and `pytest` don't agree here.
)
@cli.argument ( ' -km ' , ' --keymap ' , type = str , default = ' default ' , help = " The keymap name to build. Default is ' default ' . " )
@cli.argument ( ' -e ' , ' --env ' , arg_only = True , action = ' append ' , default = [ ] , help = " Set a variable to be passed to make. May be passed multiple times. " )
@cli.subcommand ( ' Compile QMK Firmware for all keyboards. ' , hidden = False if cli . config . user . developer else True )
def mass_compile ( cli ) :
""" Compile QMK Firmware against all keyboards.
"""
2024-06-15 15:37:47 +06:00
maybe_exit_config ( should_exit = False , should_reraise = True )
2023-09-29 02:48:20 +06:00
if len ( cli . args . builds ) > 0 :
2023-11-15 11:24:54 +06:00
json_like_targets = list ( [ Path ( p ) for p in filter ( lambda e : Path ( e ) . exists ( ) and Path ( e ) . suffix == ' .json ' , cli . args . builds ) ] )
make_like_targets = list ( filter ( lambda e : Path ( e ) not in json_like_targets , cli . args . builds ) )
targets = search_make_targets ( make_like_targets )
targets . extend ( [ JsonKeymapBuildTarget ( e ) for e in json_like_targets ] )
2023-09-29 02:48:20 +06:00
else :
2023-10-17 04:43:50 +06:00
targets = search_keymap_targets ( [ ( ' all ' , cli . config . mass_compile . keymap ) ] , cli . args . filter )
2023-09-29 02:48:20 +06:00
2023-11-30 15:27:02 +06:00
return mass_compile_targets ( targets , cli . args . clean , cli . args . dry_run , cli . args . no_temp , cli . config . mass_compile . parallel , * * build_environment ( cli . args . env ) )