Confirmed users
4,293
edits
Lukasblakk (talk | contribs) |
|||
| Line 118: | Line 118: | ||
* Kicked off automation: | * Kicked off automation: | ||
buildbot sendchange --username=coop --master=localhost:9989 -m"Firefox 3.0.16build2 release" DOOOOOEEEEET! | buildbot sendchange --username=coop --master=localhost:9989 -m"Firefox 3.0.16build2 release" DOOOOOEEEEET! | ||
====Tag==== | ====Tag==== | ||
* Forgot to tag the bumped configs, so the first tag run failed. | * Forgot to tag the bumped configs, so the first tag run failed. | ||
* Discovered that the build 1 timestamp specified PDT instead of PST, so we missed [http://bonsai.mozilla.org/cvsquery.cgi?treeid=default&module=all&branch=HEAD&branchtype=match&hours=2&date=explicit&mindate=2009-11-19+10%3A26+PST&maxdate=2009-11-19+10%3A28+PST&cvsroot=%2Fcvsroot the last change] when creating the relbranch | |||
* interrupted source and en-US builds | |||
* merged the change over to the branch, creating rev 3.216.4.1, and moved the FIREFOX_3_0_16_RELEASE and FIREFOX_3_0_16_BUILD2 tags onto that | |||
* patched production-1.9-master:/build/buildbot/master.cfg and reconfiged | |||
<pre> | |||
Index: master.cfg | |||
=================================================================== | |||
RCS file: /cvsroot/mozilla/tools/buildbot-configs/automation/production-1.9/master.cfg,v | |||
retrieving revision 1.56 | |||
diff -u -r1.56 master.cfg | |||
--- master.cfg 5 Aug 2009 03:43:58 -0000 1.56 | |||
+++ master.cfg 1 Dec 2009 03:11:29 -0000 | |||
@@ -449,13 +449,17 @@ | |||
haltOnFailure=1, | |||
) | |||
+from buildbot.process.factory import BuildFactory | |||
+from buildbot.steps.dummy import Dummy | |||
+dummyFactory = BuildFactory() | |||
+dummyFactory.addStep(Dummy()) | |||
c['builders'].append( | |||
{ | |||
'name': 'tag', | |||
'slavename': 'fx-linux-1.9-slave2', | |||
'category': 'release', | |||
'builddir': 'tag', | |||
- 'factory': tagFactory, | |||
+ 'factory': dummyFactory, | |||
}, | |||
) | |||
</pre> | |||
* cleaned up fx-linux-1.9-slave2:/builds/source/firefox-3.0.16/batch-source/build2 | |||
* cleaned up /builds/config/firefox-3.0.16-build2 on all three slaves | |||
* removed FIREFOX_3_0_16_BUILD2_l10n and FIREFOX_3_0_16_BUILD2 tags from mozilla/tools/tinderbox-configs/firefox | |||
* stopped buildbot on win32 slave, clean up link/make/perl processes, start buildbot | |||
* give another sendchange | |||
buildbot sendchange --username=nthomas --master=localhost:9989 -m"Firefox 3.0.16build2 release - restart" DOOOOOEEEEET! | |||
In retrospect, merging the change to the relbrnach and doing build 3 would have been much easier! | |||
<font color="red"><b>*** DONE TO HERE ***</b></font> | <font color="red"><b>*** DONE TO HERE ***</b></font> | ||