aboutsummaryrefslogtreecommitdiffstats
path: root/lib/python2.7/site-packages/autobuilder/buildsteps/CheckForWorldLsb.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/python2.7/site-packages/autobuilder/buildsteps/CheckForWorldLsb.py')
-rw-r--r--lib/python2.7/site-packages/autobuilder/buildsteps/CheckForWorldLsb.py51
1 files changed, 0 insertions, 51 deletions
diff --git a/lib/python2.7/site-packages/autobuilder/buildsteps/CheckForWorldLsb.py b/lib/python2.7/site-packages/autobuilder/buildsteps/CheckForWorldLsb.py
deleted file mode 100644
index 97b73992..00000000
--- a/lib/python2.7/site-packages/autobuilder/buildsteps/CheckForWorldLsb.py
+++ /dev/null
@@ -1,51 +0,0 @@
-'''
-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)