aboutsummaryrefslogtreecommitdiffstats
path: root/lib/python2.7/site-packages/autobuilder/buildsteps/BuildToolchainImages.py
blob: 37725e78637a62a4fd9bfc6c3ac08920a66a1dd4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
'''
Created on Jan 6, 2013

__author__ = "Elizabeth 'pidge' Flanagan"
__copyright__ = "Copyright 2012-2013, Intel Corp."
__credits__ = ["Elizabeth Flanagan"]
__license__ = "GPL"
__version__ = "2.0"
__maintainer__ = "Elizabeth Flanagan"
__email__ = "pidge@toganlabs.com"
'''


from buildbot.steps.shell import ShellCommand
from buildbot.process.buildstep import LogLineObserver
import os

from lib.buildsteps import BitbakeShellCommand

class BuildToolchainImages(BitbakeShellCommand):
    haltOnFailure = False
    flunkOnFailure = True
    name = "Building Toolchain Images"
    def __init__(self, factory, argdict=None, **kwargs):
        self.images=""
        self._pendingLogObservers = []
        self.factory = factory
        for k, v in argdict.iteritems():
            setattr(self, k, v)

        # Timeout needs to be passed to LoggingBuildStep as a kwarg
        self.timeout = 100000
        kwargs['timeout']=self.timeout
        super(BuildToolchainImages, self).__init__(factory, argdict=None,
                **kwargs)

    def start(self):
        layerversion = int(self.getProperty("layerversion_core", "0"))
        if self.images is not "":
                self.description = ["Building " + self.images +" -c populate_sdk"]
                self.command = ". ./oe-init-build-env; bitbake " + self.images + " -c populate_sdk"
        else:
            if layerversion > 1:
                self.description = ["Building core-image-sato -c populate_sdk"]
                self.command = ". ./oe-init-build-env; bitbake core-image-sato -c populate_sdk"
            else:
                self.description = ["Building meta-toolchain-gmae"]
                self.command = ". ./oe-init-build-env; bitbake meta-toolchain-gmae"
        ShellCommand.start(self)

    def describe(self, done=False):
        description = ShellCommand.describe(self,done)
        return description