diff --git a/builders.py b/builders.py index 7363c72..adcb2f5 100644 --- a/builders.py +++ b/builders.py @@ -13,8 +13,8 @@ builders = [] # Environment to pass into the workers, e.g. to load further local configuration # fragments -extra_env = {} -#extra_env = {"ABHELPER_JSON" : "config.json /home/pokybuild/config-local.json"} +#extra_env = {} +extra_env = {"ABHELPER_JSON" : "config.json /home/pokybuild/config-local.json"} @util.renderer def get_sstate_release_number(props): @@ -137,7 +137,7 @@ def create_builder_factory(): haltOnFailure=True, name="Clobber build dir")) f.addStep(steps.Git( - repourl='git://git.yoctoproject.org/yocto-autobuilder-helper', + repourl='file:///home/pokybuild/yocto-autobuilder-helper', workdir=util.Interpolate("%(prop:builddir)s/yocto-autobuilder-helper"), mode='incremental', haltOnFailure=True, diff --git a/config.py b/config.py index 2568768..33286ea 100644 --- a/config.py +++ b/config.py @@ -59,8 +59,8 @@ releases = ["", "sumo", "rocko", "pyro", "morty"] # ## Cluster configuration # Publishing settings -sharedrepodir = "/srv/www/vhosts/repos.yoctoproject.org" -publish_dest = "/srv/www/vhosts/autobuilder.yoctoproject.org/pub" +sharedrepodir = "/home/pokybuild/shareddir/repos.yoctoproject.org" +publish_dest = "/home/pokybuild/shareddir/pub" # Web UI settings web_port = 8010 @@ -71,12 +71,12 @@ workers = ["example-worker"] # Worker configuration, all workers configured the same... # TODO: support per-worker config worker_password = "pass" -worker_max_builds = None +worker_max_builds = 3 notify_on_missing = None # Some builders should only run on specific workers (host OS dependent) builder_to_workers = { - "nightly-rpm-non-rpm": [], - "nightly-deb-non-deb": [], + "nightly-rpm-non-rpm": ["example-worker"], + "nightly-deb-non-deb": ["example-worker"], "default": workers } diff --git a/master.cfg b/master.cfg index ed804ad..ea1eb5c 100644 --- a/master.cfg +++ b/master.cfg @@ -77,6 +77,6 @@ c['www'] = www.www c['workers'] = workers.workers c['title'] = "Yocto Autobuilder" -c['titleURL'] = "https://autobuilder.yoctoproject.org/main/" +c['titleURL'] = "http://192.168.1.69:8010/" # visible location for internal web server -c['buildbotURL'] = "https://autobuilder.yoctoproject.org/main/" +c['buildbotURL'] = "http://192.168.1.69:8010/"