Lines Matching full:deploy
1 # Development tool - deploy/undeploy command plugin
7 """Devtool plugin containing the deploy subcommands"""
25 def _prepare_remote_script(deploy, verbose=False, dryrun=False, undeployall=False, nopreserve=False… argument
28 deploy/undeploy files. We have to be careful what we put in this
42 if not deploy:
66 if not deploy and not dryrun:
71 if deploy:
138 def deploy(args, config, basepath, workspace): function
139 """Entry point for the devtool 'deploy' subcommand"""
164 raise DevtoolError('No files to deploy - have you built the %s '
171 recipe_outdir = os.path.join(rd.getVar('WORKDIR'), 'devtool-deploy-target-stripped')
232 shellscript = _prepare_remote_script(deploy=True,
255 raise DevtoolError('Deploy failed - rerun with -s to get a complete '
299 … shellscript = _prepare_remote_script(deploy=False, dryrun=args.dry_run, undeployall=args.all)
323 """Register devtool subcommands from the deploy plugin"""
325 parser_deploy = subparsers.add_parser('deploy-target',
326 help='Deploy recipe output files to live target machine',
329 parser_deploy.add_argument('recipename', help='Recipe to deploy')
344 …lue of this option can be controlled by setting the strip option in the [Deploy] section to True o…
345 … default=oe.types.boolean(context.config.get('Deploy', 'strip', default='0')),
347 …strip_opts.add_argument('--no-strip', help='Do not strip executables prior to deploy', dest='strip…
349 parser_deploy.set_defaults(func=deploy)
353 …eploys recipe output files previously deployed to a live target machine by devtool deploy-target.',