You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

76 lines
3.9 KiB

Configuration system for CLI (#6708) * Rework how bin/qmk handles subcommands * qmk config wip * Code to show all configs * Fully working `qmk config` command * Mark some CLI arguments so they don't pollute the config file * Fleshed out config support, nicer subcommand support * sync with installable cli * pyformat * Add a test for subcommand_modules * Documentation for the `qmk config` command * split config_token on space so qmk config is more predictable * Rework how subcommands are imported * Document `arg_only` * Document deleting from CLI * Document how multiple operations work * Add cli config to the doc index * Add tests for the cli commands * Make running the tests more reliable * Be more selective about building all default keymaps * Update new-keymap to fit the new subcommand style * Add documentation about writing CLI scripts * Document new-keyboard * Update docs/cli_configuration.md Co-Authored-By: noroadsleft <18669334+noroadsleft@users.noreply.github.com> * Update docs/cli_development.md Co-Authored-By: noroadsleft <18669334+noroadsleft@users.noreply.github.com> * Update docs/cli_development.md Co-Authored-By: noroadsleft <18669334+noroadsleft@users.noreply.github.com> * Update docs/cli_development.md Co-Authored-By: noroadsleft <18669334+noroadsleft@users.noreply.github.com> * Address yan's comments. * Apply suggestions from code review suggestions from @noahfrederick Co-Authored-By: Noah Frederick <code@noahfrederick.com> * Apply suggestions from code review Co-Authored-By: Noah Frederick <code@noahfrederick.com> * Remove pip3 from the test runner
4 years ago
Configuration system for CLI (#6708) * Rework how bin/qmk handles subcommands * qmk config wip * Code to show all configs * Fully working `qmk config` command * Mark some CLI arguments so they don't pollute the config file * Fleshed out config support, nicer subcommand support * sync with installable cli * pyformat * Add a test for subcommand_modules * Documentation for the `qmk config` command * split config_token on space so qmk config is more predictable * Rework how subcommands are imported * Document `arg_only` * Document deleting from CLI * Document how multiple operations work * Add cli config to the doc index * Add tests for the cli commands * Make running the tests more reliable * Be more selective about building all default keymaps * Update new-keymap to fit the new subcommand style * Add documentation about writing CLI scripts * Document new-keyboard * Update docs/cli_configuration.md Co-Authored-By: noroadsleft <18669334+noroadsleft@users.noreply.github.com> * Update docs/cli_development.md Co-Authored-By: noroadsleft <18669334+noroadsleft@users.noreply.github.com> * Update docs/cli_development.md Co-Authored-By: noroadsleft <18669334+noroadsleft@users.noreply.github.com> * Update docs/cli_development.md Co-Authored-By: noroadsleft <18669334+noroadsleft@users.noreply.github.com> * Address yan's comments. * Apply suggestions from code review suggestions from @noahfrederick Co-Authored-By: Noah Frederick <code@noahfrederick.com> * Apply suggestions from code review Co-Authored-By: Noah Frederick <code@noahfrederick.com> * Remove pip3 from the test runner
4 years ago
  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
  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 to run.")
  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. if cli.args.clean and not cli.args.filename and not cli.args.dry_run:
  27. command = create_make_command(cli.config.compile.keyboard, cli.config.compile.keymap, 'clean')
  28. # FIXME(skullydazed/anyone): Remove text=False once milc 1.0.11 has had enough time to be installed everywhere.
  29. cli.run(command, capture_output=False, text=False)
  30. # Build the environment vars
  31. envs = {}
  32. for env in cli.args.env:
  33. if '=' in env:
  34. key, value = env.split('=', 1)
  35. envs[key] = value
  36. else:
  37. cli.log.warning('Invalid environment variable: %s', env)
  38. # Determine the compile command
  39. command = None
  40. if cli.args.filename:
  41. # If a configurator JSON was provided generate a keymap and compile it
  42. user_keymap = parse_configurator_json(cli.args.filename)
  43. command = compile_configurator_json(user_keymap, parallel=cli.config.compile.parallel, **envs)
  44. else:
  45. if cli.config.compile.keyboard and cli.config.compile.keymap:
  46. # Generate the make command for a specific keyboard/keymap.
  47. command = create_make_command(cli.config.compile.keyboard, cli.config.compile.keymap, parallel=cli.config.compile.parallel, **envs)
  48. elif not cli.config.compile.keyboard:
  49. cli.log.error('Could not determine keyboard!')
  50. elif not cli.config.compile.keymap:
  51. cli.log.error('Could not determine keymap!')
  52. # Compile the firmware, if we're able to
  53. if command:
  54. cli.log.info('Compiling keymap with {fg_cyan}%s', ' '.join(command))
  55. if not cli.args.dry_run:
  56. cli.echo('\n')
  57. # FIXME(skullydazed/anyone): Remove text=False once milc 1.0.11 has had enough time to be installed everywhere.
  58. compile = cli.run(command, capture_output=False, text=False)
  59. return compile.returncode
  60. else:
  61. cli.log.error('You must supply a configurator export, both `--keyboard` and `--keymap`, or be in a directory for a keyboard or keymap.')
  62. cli.echo('usage: qmk compile [-h] [-b] [-kb KEYBOARD] [-km KEYMAP] [filename]')
  63. return False