Confirmed users
4,293
edits
Line 81: | Line 81: | ||
Forced en-US builds using waterfall (no properties set other than who and reason). | Forced en-US builds using waterfall (no properties set other than who and reason). | ||
l10n builds forced one platform at a time | l10n builds were forced one platform at a time, after each en-US finishing. Setup: | ||
# on nthomas's laptop: | # on nthomas's laptop: | ||
mkdir -p ~/tmp/3.6b2-l10n | mkdir -p ~/tmp/3.6b2-l10n | ||
Line 89: | Line 89: | ||
hg clone http://hg.mozilla.org/build/buildbot | hg clone http://hg.mozilla.org/build/buildbot | ||
cd tools/buildbot-helpers | cd tools/buildbot-helpers | ||
The forcing | The forcing: | ||
# linux | # linux | ||
PYTHONPATH=../../:../../buildbot python force_release_l10n.py -m http://production-master.build.mozilla.org:8010 -v -t FIREFOX_3_6b2_RELEASE -b releases/mozilla-1.9.2 -p linux -n nthomas | PYTHONPATH=../../:../../buildbot python force_release_l10n.py -m http://production-master.build.mozilla.org:8010 -v -t FIREFOX_3_6b2_RELEASE -b releases/mozilla-1.9.2 -p linux -n nthomas | ||
Line 96: | Line 96: | ||
# win32 | # win32 | ||
PYTHONPATH=../../:../../buildbot python force_release_l10n.py -m http://production-master.build.mozilla.org:8010 -v -t FIREFOX_3_6b2_RELEASE -b releases/mozilla-1.9.2 -p win32 -n nthomas | PYTHONPATH=../../:../../buildbot python force_release_l10n.py -m http://production-master.build.mozilla.org:8010 -v -t FIREFOX_3_6b2_RELEASE -b releases/mozilla-1.9.2 -p win32 -n nthomas | ||
Manual verification that all l10n builds present: | |||
# stage | |||
cd /home/ftp/pub/firefox/nightly/3.6b1-candidates/build3 | |||
# each should be 47 = en-US + 46 l10n builds | |||
for p in linux-i686 mac unsigned/win32; do | |||
echo `ls $p | grep -v xpi | wc -l` $p | |||
done |