代码搜索:BuildBot

找到约 28 项符合「BuildBot」的源代码

代码结果 28
www.eeworm.com/read/472233/1416996

py schedulers.py

from buildbot.scheduler import AnyBranchScheduler, Periodic def getSchedulers(builders): builders = map(lambda builder: (builder['name'], builder['periodic']), builders) trunkBuilders = [name
www.eeworm.com/read/472233/1416989

makefile

# -*- makefile -*- # This is a simple makefile which lives in a buildmaster/buildslave # directory (next to the buildbot.tac file). It allows you to start/stop the # master or slave by doing 'make st
www.eeworm.com/read/472233/1416995

py auth.py

from buildbot.buildslave import BuildSlave def getSlaveAuthenticationDetails(): def createBuildSlave((name, password)): return BuildSlave(name, password, max_builds=1) return map(crea
www.eeworm.com/read/436561/1848020

py feeds.py

# This module enables ATOM and RSS feeds from webstatus. # # It is based on "feeder.py" which was part of the Buildbot # configuration for the Subversion project. The original file was # created by Li
www.eeworm.com/read/436561/1848005

py __init__.py

# Steve 'Ashcrow' Milner # # This software may be freely redistributed under the terms of the GNU # general public license. # # You should have received a copy of the GNU
www.eeworm.com/read/436561/1848006

py rpmlint.py

# Steve 'Ashcrow' Milner # # This software may be freely redistributed under the terms of the GNU # general public license. # # You should have received a copy of the GNU
www.eeworm.com/read/436561/1848008

py __init__.py

# Steve 'Ashcrow' Milner # # This software may be freely redistributed under the terms of the GNU # general public license. # # You should have received a copy of the GNU
www.eeworm.com/read/472233/1416990

py steps.py

from webkit.basesteps import ShellCommand, SVN, Test, Compile, UploadCommand from buildbot.status.builder import SUCCESS, FAILURE, WARNINGS class CheckOutSource(SVN): baseURL = "http://svn.webkit
www.eeworm.com/read/472233/1416993

py basesteps.py

from buildbot.steps import shell, source import os def buildStepWithDefaultTimeout(klass, default_timeout=75*60): class Step(klass): timeout = default_timeout def __init__(self,
www.eeworm.com/read/472233/1416994

py factories.py

from webkit.steps import * from buildbot.process import factory s = factory.s class BuildFactory(factory.BuildFactory): useProgress = False def __init__(self): factory.BuildFactory._