[154471] contrib/buildbot-test/master.cfg

raimue at macports.org raimue at macports.org
Sun Oct 30 18:59:41 CET 2016


Revision: 154471
          https://trac.macports.org/changeset/154471
Author:   raimue at macports.org
Date:     2016-10-30 18:59:40 +0100 (Sun, 30 Oct 2016)
Log Message:
-----------
buildbot: rename buildslave docs to jobs

Modified Paths:
--------------
    contrib/buildbot-test/master.cfg

Modified: contrib/buildbot-test/master.cfg
===================================================================
--- contrib/buildbot-test/master.cfg	2016-10-30 14:42:45 UTC (rev 154470)
+++ contrib/buildbot-test/master.cfg	2016-10-30 17:59:40 UTC (rev 154471)
@@ -102,7 +102,7 @@
 
 path_base = '/usr/bin:/bin:/usr/sbin:/sbin'
 path_ports = os.path.join(config['toolsprefix'], 'bin') + ':' + path_base
-path_docs = path_ports
+path_jobs = path_ports
 
 # Allow spaces and tabs in property values
 c['validation'] = {'property_value': re.compile(r'^[ \t\w./~:-]*$')}
@@ -236,10 +236,10 @@
             change_filter=util.ChangeFilter(
                 repository=config['wwwurl'][:-4],
                 branch='master'),
-            builderNames=['docs-www']),
+            builderNames=['jobs-www']),
         schedulers.ForceScheduler(
             name='www_force',
-            builderNames=['docs-www'])
+            builderNames=['jobs-www'])
         ))
 
 if 'guide' in config['deploy']:
@@ -250,10 +250,10 @@
             change_filter=util.ChangeFilter(
                 repository=config['guideurl'][:-4],
                 branch='master'),
-            builderNames=['docs-guide']),
+            builderNames=['jobs-guide']),
         schedulers.ForceScheduler(
             name='guide_force',
-            builderNames=['docs-www'])
+            builderNames=['jobs-www'])
         ))
 
 portbuilders = izip(portbuilder_triggerables, portbuilder_buildernames)
@@ -516,9 +516,9 @@
         )
 
 if 'www' in config['deploy']:
-    docs_www_factory = util.BuildFactory()
+    jobs_www_factory = util.BuildFactory()
     # TODO: incremental mode with cleanup?
-    docs_www_factory.addStep(steps.Git(
+    jobs_www_factory.addStep(steps.Git(
         repourl=config['wwwurl'],
         progress=True,
         mode='full',
@@ -525,7 +525,7 @@
         method='copy',
         workdir='www'))
     # TODO: validate/lint files
-    docs_www_factory.addSteps(
+    jobs_www_factory.addSteps(
         make_rsync_deploy_steps(
             host=config['deploy']['www']['host'], 
             user=config['deploy']['www']['user'],
@@ -535,9 +535,9 @@
             destpath=config['deploy']['www']['destpath']))
 
 if 'guide' in config['deploy']:
-    docs_guide_factory = util.BuildFactory()
+    jobs_guide_factory = util.BuildFactory()
     # TODO: incremental mode with cleanup?
-    docs_guide_factory.addStep(steps.Git(
+    jobs_guide_factory.addStep(steps.Git(
         repourl=config['guideurl'],
         progress=True,
         mode='full',
@@ -544,16 +544,16 @@
         method='copy',
         workdir='guide'))
     # TODO: check for existence of tools in toolsprefix
-    docs_guide_factory.addStep(steps.Compile(
+    jobs_guide_factory.addStep(steps.Compile(
         name='validate',
         description='validating',
         descriptionDone='validate',
         command='make validate',
         workdir='guide'))
-    docs_guide_factory.addStep(steps.Compile(
+    jobs_guide_factory.addStep(steps.Compile(
         command='make all',
         workdir='guide'))
-    docs_guide_factory.addSteps(
+    jobs_guide_factory.addSteps(
         make_rsync_deploy_steps(
             host=config['deploy']['guide']['host'], 
             user=config['deploy']['guide']['user'],
@@ -611,18 +611,18 @@
 if 'www' in config['deploy']:
     c['builders'].append(
         util.BuilderConfig(
-            name='docs-www',
-            slavenames=['docs'],
-            factory=docs_www_factory,
-            tags=['docs', 'www'],
+            name='jobs-www',
+            slavenames=['jobs'],
+            factory=jobs_www_factory,
+            tags=['jobs', 'docs', 'www'],
             env=merge_dicts(env_buildinfo, {'PATH': path_ports})))
 if 'guide' in config['deploy']:
     c['builders'].append(
         util.BuilderConfig(
-            name='docs-guide',
-            slavenames=['docs'],
-            factory=docs_guide_factory,
-            tags=['docs', 'guide'],
+            name='jobs-guide',
+            slavenames=['jobs'],
+            factory=jobs_guide_factory,
+            tags=['jobs', 'docs', 'guide'],
             env=merge_dicts(env_buildinfo, {'PATH': path_ports})))
 
 
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.macports.org/pipermail/macports-changes/attachments/20161030/d3902bb5/attachment-0002.html>


More information about the macports-changes mailing list