2017-06-14 13:36:37 +02:00
|
|
|
# kas - setup tool for bitbake based projects
|
|
|
|
#
|
|
|
|
# Copyright (c) Siemens AG, 2017
|
|
|
|
#
|
|
|
|
# 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.
|
2017-06-21 13:32:56 +02:00
|
|
|
"""
|
|
|
|
The build plugin for kas.
|
|
|
|
"""
|
2017-06-14 13:36:37 +02:00
|
|
|
|
|
|
|
import os
|
2017-09-25 18:59:43 +02:00
|
|
|
from .config import Config
|
2017-06-28 14:48:41 +02:00
|
|
|
from .libkas import find_program, run_cmd, kasplugin
|
2017-06-14 13:36:37 +02:00
|
|
|
from .libcmds import (Macro, Command, SetupDir, SetupProxy,
|
|
|
|
CleanupSSHAgent, SetupSSHAgent, SetupEnviron,
|
|
|
|
WriteConfig, SetupHome, ReposFetch,
|
|
|
|
ReposCheckout)
|
|
|
|
|
|
|
|
__license__ = 'MIT'
|
|
|
|
__copyright__ = 'Copyright (c) Siemens AG, 2017'
|
|
|
|
|
|
|
|
|
2017-06-28 14:48:41 +02:00
|
|
|
@kasplugin
|
2017-06-14 13:36:37 +02:00
|
|
|
class Build:
|
2017-06-21 13:32:56 +02:00
|
|
|
"""
|
|
|
|
This class implements the build plugin for kas.
|
|
|
|
"""
|
|
|
|
|
2017-06-28 14:48:41 +02:00
|
|
|
@classmethod
|
|
|
|
def get_argparser(cls, parser):
|
|
|
|
"""
|
|
|
|
Returns an a parser for the build plugin
|
|
|
|
"""
|
2017-06-28 14:48:44 +02:00
|
|
|
bld_psr = parser.add_parser('build',
|
|
|
|
help='Checks out all necessary '
|
|
|
|
'repositories and builds using '
|
|
|
|
'bitbake as specificed in the '
|
|
|
|
'configuration file.')
|
2017-06-14 13:36:37 +02:00
|
|
|
|
|
|
|
bld_psr.add_argument('config',
|
|
|
|
help='Config file')
|
|
|
|
bld_psr.add_argument('--target',
|
2017-10-13 12:20:04 +02:00
|
|
|
action='append',
|
2017-07-08 19:20:21 +02:00
|
|
|
help='Select target to build')
|
2017-06-14 13:36:37 +02:00
|
|
|
bld_psr.add_argument('--task',
|
2017-09-25 09:08:09 +02:00
|
|
|
help='Select which task should be executed')
|
2017-06-14 13:36:37 +02:00
|
|
|
bld_psr.add_argument('--skip',
|
|
|
|
help='Skip build steps',
|
|
|
|
default=[])
|
|
|
|
|
|
|
|
def run(self, args):
|
2017-06-21 13:32:56 +02:00
|
|
|
"""
|
|
|
|
Executes the build command of the kas plugin.
|
|
|
|
"""
|
|
|
|
# pylint: disable=no-self-use
|
|
|
|
|
2017-06-14 13:36:37 +02:00
|
|
|
if args.cmd != 'build':
|
|
|
|
return False
|
|
|
|
|
2017-09-25 18:59:43 +02:00
|
|
|
cfg = Config(args.config, args.target, args.task)
|
2017-06-14 13:36:37 +02:00
|
|
|
|
|
|
|
macro = Macro()
|
|
|
|
|
|
|
|
# Prepare
|
|
|
|
macro.add(SetupDir())
|
|
|
|
macro.add(SetupProxy())
|
|
|
|
|
|
|
|
if 'SSH_PRIVATE_KEY' in os.environ:
|
|
|
|
macro.add(SetupSSHAgent())
|
|
|
|
|
|
|
|
macro.add(ReposFetch())
|
|
|
|
macro.add(ReposCheckout())
|
|
|
|
macro.add(SetupEnviron())
|
|
|
|
|
|
|
|
macro.add(WriteConfig())
|
|
|
|
|
|
|
|
# Build
|
|
|
|
macro.add(SetupHome())
|
|
|
|
macro.add(BuildCommand(args.task))
|
|
|
|
|
|
|
|
if 'SSH_PRIVATE_KEY' in os.environ:
|
|
|
|
macro.add(CleanupSSHAgent())
|
|
|
|
|
|
|
|
macro.run(cfg, args.skip)
|
|
|
|
|
|
|
|
return True
|
|
|
|
|
|
|
|
|
|
|
|
class BuildCommand(Command):
|
2017-06-21 13:32:56 +02:00
|
|
|
"""
|
|
|
|
Implement the bitbake build step.
|
|
|
|
"""
|
|
|
|
|
2017-06-14 13:36:37 +02:00
|
|
|
def __init__(self, task):
|
2017-06-21 13:32:56 +02:00
|
|
|
super().__init__()
|
2017-06-14 13:36:37 +02:00
|
|
|
self.task = task
|
|
|
|
|
|
|
|
def __str__(self):
|
|
|
|
return 'build'
|
|
|
|
|
|
|
|
def execute(self, config):
|
2017-06-21 13:32:56 +02:00
|
|
|
"""
|
|
|
|
Executes the bitbake build command.
|
|
|
|
"""
|
2017-06-14 13:36:37 +02:00
|
|
|
# Start bitbake build of image
|
|
|
|
bitbake = find_program(config.environ['PATH'], 'bitbake')
|
2017-10-13 12:20:04 +02:00
|
|
|
run_cmd([bitbake, '-k', '-c', config.get_bitbake_task()] +
|
|
|
|
config.get_bitbake_targets(),
|
2017-06-14 13:36:37 +02:00
|
|
|
env=config.environ, cwd=config.build_dir)
|