aboutsummaryrefslogtreecommitdiffstats
path: root/lib/python2.7/site-packages/autobuilder/buildsteps/CheckForWorldLsb.py
blob: 97b73992f8db6bb5795c13b38a50bf6cdee73f0d (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
'''
Created on May 1st, 2015

__author__ = "Elizabeth 'pidge' Flanagan"
__copyright__ = "Copyright 2012-2015, 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
from buildbot.status.results import SUCCESS, SKIPPED

class CheckForWorldLsb(ShellCommand):
    haltOnFailure = False
    flunkOnFailure = True
    name = "CheckForWorldLsb"
    def __init__(self, factory, argdict=None, **kwargs):
        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
        ShellCommand.__init__(self, **kwargs)

    def start(self):
        # world-lsb works, right about here
        self.command = "git log --pretty=format:'%H' |grep db409697db2ea0931cdcd2015d089b6b0ea39bbb"
        self.description = ["Checking for working world-lsb"]
        ShellCommand.start(self)

    def commandComplete(self, cmd):
        result = cmd.logs['stdio'].getText()
        worldLSBExists = ""
        try:
            worldLSBExists = result.split()[-1]
        except:
            self.setProperty('worldLSBExists', "False", "World LSB Does Not Build.")
            self.finished(SUCCESS)
            self.build.allStepsDone()

        if worldLSBExists == "db409697db2ea0931cdcd2015d089b6b0ea39bbb":
            self.setProperty('worldLSBExists', "True", "World LSB Builds.")
            self.finished(SUCCESS)

    def getText(self, cmd, results):
        return ShellCommand.getText(self, cmd, results)