Example #1
0
    def buildAll(self):
        rootPath = os.path.join(self.config["stageDir"], "trunk", "qooxdoo")

        if self.config["svnRevert"]:
            try:
                util.svnRevert(rootPath)
            except Exception, e:
                self.log.error("Error reverting SVN: " + str(e))
Example #2
0
 def buildAll(self):
     rootPath = os.path.join(self.config["stageDir"], "trunk", "qooxdoo")
     
     if self.config["svnRevert"]:
         try:
             util.svnRevert(rootPath)
         except Exception, e:
             self.log.error("Error reverting SVN: " + str(e))
Example #3
0
 def buildAll(self):
     rootPath = os.path.join(self.config["stageDir"], "trunk", "qooxdoo")
     
     if self.config["svnRevert"]:
         util.svnRevert(rootPath)
     
     if self.config["svnUpdate"]:
         util.svnUpdate(rootPath)
         self.log.info("Updated to revision %s" %util.getSvnVersion(rootPath))
     
     self.log.info("Building all configured targets.")
     for target in self.config["targets"]:
         self.buildApp(target)