compile.py 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. """Compile a QMK Firmware.
  2. You can compile a keymap already in the repo or using a QMK Configurator export.
  3. """
  4. from argcomplete.completers import FilesCompleter
  5. from milc import cli
  6. import qmk.path
  7. from qmk.decorators import automagic_keyboard, automagic_keymap
  8. from qmk.commands import compile_configurator_json, create_make_command, parse_configurator_json, build_environment
  9. from qmk.keyboard import keyboard_completer, keyboard_folder
  10. from qmk.keymap import keymap_completer
  11. @cli.argument('filename', nargs='?', arg_only=True, type=qmk.path.FileType('r'), completer=FilesCompleter('.json'), help='The configurator export to compile')
  12. @cli.argument('-kb', '--keyboard', type=keyboard_folder, completer=keyboard_completer, help='The keyboard to build a firmware for. Ignored when a configurator export is supplied.')
  13. @cli.argument('-km', '--keymap', completer=keymap_completer, help='The keymap to build a firmware for. Ignored when a configurator export is supplied.')
  14. @cli.argument('-n', '--dry-run', arg_only=True, action='store_true', help="Don't actually build, just show the make command to be run.")
  15. @cli.argument('-j', '--parallel', type=int, default=1, help="Set the number of parallel make jobs; 0 means unlimited.")
  16. @cli.argument('-e', '--env', arg_only=True, action='append', default=[], help="Set a variable to be passed to make. May be passed multiple times.")
  17. @cli.argument('-c', '--clean', arg_only=True, action='store_true', help="Remove object files before compiling.")
  18. @cli.subcommand('Compile a QMK Firmware.')
  19. @automagic_keyboard
  20. @automagic_keymap
  21. def compile(cli):
  22. """Compile a QMK Firmware.
  23. If a Configurator export is supplied this command will create a new keymap, overwriting an existing keymap if one exists.
  24. If a keyboard and keymap are provided this command will build a firmware based on that.
  25. """
  26. # Build the environment vars
  27. envs = build_environment(cli.args.env)
  28. # Determine the compile command
  29. commands = []
  30. if cli.args.filename:
  31. # If a configurator JSON was provided generate a keymap and compile it
  32. user_keymap = parse_configurator_json(cli.args.filename)
  33. commands = [compile_configurator_json(user_keymap, parallel=cli.config.compile.parallel, clean=cli.args.clean, **envs)]
  34. elif cli.config.compile.keyboard and cli.config.compile.keymap:
  35. # Generate the make command for a specific keyboard/keymap.
  36. if cli.args.clean:
  37. commands.append(create_make_command(cli.config.compile.keyboard, cli.config.compile.keymap, 'clean', **envs))
  38. commands.append(create_make_command(cli.config.compile.keyboard, cli.config.compile.keymap, parallel=cli.config.compile.parallel, **envs))
  39. if not commands:
  40. cli.log.error('You must supply a configurator export, both `--keyboard` and `--keymap`, or be in a directory for a keyboard or keymap.')
  41. cli.print_help()
  42. return False
  43. cli.log.info('Compiling keymap with {fg_cyan}%s', ' '.join(commands[-1]))
  44. if not cli.args.dry_run:
  45. cli.echo('\n')
  46. for command in commands:
  47. ret = cli.run(command, capture_output=False)
  48. if ret.returncode:
  49. return ret.returncode