bcb748c22a
The list of steps to be executed within a macro is split into setup commands, main commands and cleanup commands to ensure that new steps are added to the appropriate place in the execution order by plugins. By default, the setup and cleanup commands are set to the default list of steps which the build and shell plugins have in common. It's expected that most future plugins will also share these common setup and cleanup steps but we do provide arguments to the Macro initialiser to skip these if customisation is needed. Signed-off-by: Paul Barker <pbarker@konsulko.com> Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
117 lines
3.9 KiB
Python
117 lines
3.9 KiB
Python
# kas - setup tool for bitbake based projects
|
|
#
|
|
# Copyright (c) Siemens AG, 2017-2018
|
|
#
|
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
# of this software and associated documentation files (the "Software"), to deal
|
|
# in the Software without restriction, including without limitation the rights
|
|
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
# copies of the Software, and to permit persons to whom the Software is
|
|
# furnished to do so, subject to the following conditions:
|
|
#
|
|
# The above copyright notice and this permission notice shall be
|
|
# included in all copies or substantial portions of the Software.
|
|
#
|
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
# SOFTWARE.
|
|
"""
|
|
This plugin implements the ``kas build`` command.
|
|
|
|
When this command is executed, kas will checkout repositories, setup the
|
|
build environment and then invoke bitbake to build the targets selected
|
|
in the chosen config file.
|
|
|
|
For example, to build the configuration described in the file
|
|
``kas-project.yml`` you could run::
|
|
|
|
kas build kas-project.yml
|
|
"""
|
|
|
|
import logging
|
|
import subprocess
|
|
import sys
|
|
from kas.context import create_global_context
|
|
from kas.config import Config
|
|
from kas.libkas import find_program, run_cmd
|
|
from kas.libcmds import Macro, Command
|
|
|
|
__license__ = 'MIT'
|
|
__copyright__ = 'Copyright (c) Siemens AG, 2017-2018'
|
|
|
|
|
|
class Build:
|
|
"""
|
|
This class implements the build plugin for kas.
|
|
"""
|
|
|
|
name = 'build'
|
|
helpmsg = (
|
|
'Checks out all necessary repositories and builds using bitbake as '
|
|
'specified in the configuration file.'
|
|
)
|
|
|
|
@classmethod
|
|
def setup_parser(cls, parser):
|
|
"""
|
|
Setup the argument parser for the build plugin
|
|
"""
|
|
|
|
parser.add_argument('extra_bitbake_args',
|
|
nargs='*',
|
|
help='Extra arguments to pass to bitbake')
|
|
parser.add_argument('--target',
|
|
action='append',
|
|
help='Select target to build')
|
|
parser.add_argument('-c', '--cmd', '--task', dest='task',
|
|
help='Select which task should be executed')
|
|
|
|
def run(self, args):
|
|
"""
|
|
Executes the build command of the kas plugin.
|
|
"""
|
|
|
|
ctx = create_global_context(args)
|
|
ctx.config = Config(args.config, args.target, args.task)
|
|
|
|
macro = Macro()
|
|
macro.add(BuildCommand(args.extra_bitbake_args))
|
|
macro.run(ctx, args.skip)
|
|
|
|
|
|
class BuildCommand(Command):
|
|
"""
|
|
Implements the bitbake build step.
|
|
"""
|
|
|
|
def __init__(self, extra_bitbake_args):
|
|
super().__init__()
|
|
self.extra_bitbake_args = extra_bitbake_args
|
|
|
|
def __str__(self):
|
|
return 'build'
|
|
|
|
def execute(self, ctx):
|
|
"""
|
|
Executes the bitbake build command.
|
|
"""
|
|
# Start bitbake build of image
|
|
bitbake = find_program(ctx.environ['PATH'], 'bitbake')
|
|
cmd = [bitbake, '-k', '-c', ctx.config.get_bitbake_task()] \
|
|
+ self.extra_bitbake_args + ctx.config.get_bitbake_targets()
|
|
if sys.stdout.isatty():
|
|
logging.info('%s$ %s', ctx.build_dir, ' '.join(cmd))
|
|
ret = subprocess.call(cmd, env=ctx.environ, cwd=ctx.build_dir)
|
|
if ret != 0:
|
|
logging.error('Command returned non-zero exit status %d', ret)
|
|
sys.exit(ret)
|
|
else:
|
|
run_cmd(cmd, cwd=ctx.build_dir)
|
|
|
|
|
|
__KAS_PLUGINS__ = [Build]
|