Page MenuHomeHEPForge

master.py
No OneTemporary

master.py

# -*- python -*-
# ex: set syntax=python:
from buildbot.plugins import *
from buildbot.plugins import worker
from buildbot.plugins import reporters
import os, sys
import helper
generalinfo=helper.fillDictFromFile("setup/general.cfg")
pwd=os.getcwd()
####### SETUP GENERAL PROJECT
#
masterConf = BuildmasterConfig = {}
helper.buildProject(generalinfo,masterConf,pwd)
####### CREATE TESTS
# for all *.cfg files in tests/ create a Test
for filename in os.listdir("tests"):
if filename.endswith(".cfg"):
print "build Test for %s"%filename
helper.buildTests(pwd+"/tests/"+filename,masterConf,generalinfo)
####### WRITE HELPER SCRIPTS
# Remote create of slaves
# Remote restart of slaves
helper.writeScripts(generalinfo)

File Metadata

Mime Type
text/x-python
Expires
Mon, Jan 20, 11:37 PM (1 d, 9 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
4242940
Default Alt Text
master.py (733 B)

Event Timeline