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.

71 lines
3.7 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 build_environment
  9. from qmk.keyboard import keyboard_completer, keyboard_folder_or_all, is_all_keyboards
  10. from qmk.keymap import keymap_completer, locate_keymap
  11. from qmk.build_targets import KeyboardKeymapBuildTarget, JsonKeymapBuildTarget
  12. @cli.argument('filename', nargs='?', arg_only=True, type=qmk.path.FileType('r'), completer=FilesCompleter('.json'), help='The configurator export to compile')
  13. @cli.argument('-kb', '--keyboard', type=keyboard_folder_or_all, completer=keyboard_completer, help='The keyboard to build a firmware for. Ignored when a configurator export is supplied.')
  14. @cli.argument('-km', '--keymap', completer=keymap_completer, help='The keymap to build a firmware for. Ignored when a configurator export is supplied.')
  15. @cli.argument('-n', '--dry-run', arg_only=True, action='store_true', help="Don't actually build, just show the make command to be run.")
  16. @cli.argument('-j', '--parallel', type=int, default=1, help="Set the number of parallel make jobs; 0 means unlimited.")
  17. @cli.argument('-e', '--env', arg_only=True, action='append', default=[], help="Set a variable to be passed to make. May be passed multiple times.")
  18. @cli.argument('-c', '--clean', arg_only=True, action='store_true', help="Remove object files before compiling.")
  19. @cli.argument('-t', '--target', type=str, default=None, help="Intended alternative build target, such as `production` in `make planck/rev4:default:production`.")
  20. @cli.argument('--compiledb', arg_only=True, action='store_true', help="Generates the clang compile_commands.json file during build. Implies --clean.")
  21. @cli.subcommand('Compile a QMK Firmware.')
  22. @automagic_keyboard
  23. @automagic_keymap
  24. def compile(cli):
  25. """Compile a QMK Firmware.
  26. If a Configurator export is supplied this command will create a new keymap, overwriting an existing keymap if one exists.
  27. If a keyboard and keymap are provided this command will build a firmware based on that.
  28. """
  29. if is_all_keyboards(cli.args.keyboard):
  30. from .mass_compile import mass_compile
  31. cli.args.builds = []
  32. cli.args.filter = []
  33. cli.config.mass_compile.keymap = cli.config.compile.keymap
  34. cli.config.mass_compile.parallel = cli.config.compile.parallel
  35. cli.config.mass_compile.no_temp = False
  36. return mass_compile(cli)
  37. # Build the environment vars
  38. envs = build_environment(cli.args.env)
  39. # Handler for the build target
  40. target = None
  41. if cli.args.filename:
  42. # if we were given a filename, assume we have a json build target
  43. target = JsonKeymapBuildTarget(cli.args.filename)
  44. elif cli.config.compile.keyboard and cli.config.compile.keymap:
  45. # if we got a keyboard and keymap, attempt to find it
  46. if not locate_keymap(cli.config.compile.keyboard, cli.config.compile.keymap):
  47. cli.log.error('Invalid keymap argument.')
  48. cli.print_help()
  49. return False
  50. # If we got here, then we have a valid keyboard and keymap for a build target
  51. target = KeyboardKeymapBuildTarget(cli.config.compile.keyboard, cli.config.compile.keymap)
  52. if not target:
  53. cli.log.error('You must supply a configurator export, both `--keyboard` and `--keymap`, or be in a directory for a keyboard or keymap.')
  54. cli.print_help()
  55. return False
  56. target.configure(parallel=cli.config.compile.parallel, clean=cli.args.clean, compiledb=cli.args.compiledb)
  57. target.compile(cli.args.target, dry_run=cli.args.dry_run, **envs)