Confirmed users
4,293
edits
(12 intermediate revisions by 3 users not shown) | |||
Line 205: | Line 205: | ||
Make sure that [https://bugzilla.mozilla.org/attachment.cgi?id=391871 this AUS throttling update] gets landed after beta snippets are pushed, otherwise 3.0.12 beta users will not be passively updated. | Make sure that [https://bugzilla.mozilla.org/attachment.cgi?id=391871 this AUS throttling update] gets landed after beta snippets are pushed, otherwise 3.0.12 beta users will not be passively updated. | ||
==== Disable 3.0.12 -> 3.5.1 MU ==== | |||
Drivers requested in {{bug|507967}} that we disable the current MU, so that people don't end up going 3.0.12 -> 3.5.1 -> 3.5.2 if they hear that a new firefox release is coming. | |||
# cltbld@aus2-staging | |||
cd /opt/aus2/snippets/staging/ | |||
rsync -a 20090721-Firefox-3.0.12-3.5.1-MU/ 20090802-Firefox-3.0.12-3.5.1-MU-null/ | |||
cd 20090802-Firefox-3.0.12-3.5.1-MU-null/ | |||
find . -depth -type d -iregex '.*/beta$' -exec rm -rf {} \; | |||
for f in `find . -type f`; do rm $f; touch $f; done | |||
Checked that there 370 empty snippets, to match 370 useful ones in the source dir, release channel only. | |||
~/bin/backupsnip 20090802-Firefox-3.0.12-3.5.1-MU-null | |||
~/bin/pushsnip 20090802-Firefox-3.0.12-3.5.1-MU-null | |||
==== Push to mirrors ==== | ==== Push to mirrors ==== | ||
Make sure that you use ffxbld for 'push to mirrors' , rather than cltbld (this is a change, but a desired one). | Make sure that you use ffxbld for 'push to mirrors' , rather than cltbld (this is a change, but a desired one). | ||
* push the stage-merged directory to the releases area: | * push the stage-merged directory to the releases area: | ||
Line 215: | Line 227: | ||
==== Final Verification ==== | ==== Final Verification ==== | ||
hg clone http://hg.mozilla.org/build/tools | hg clone http://hg.mozilla.org/build/tools | ||
cd tools/release/updates | cd tools/release/updates | ||
Line 223: | Line 234: | ||
* Look for any HTTP error codes besides 200 ("OK") and 302 ("Found"): | * Look for any HTTP error codes besides 200 ("OK") and 302 ("Found"): | ||
grep HTTP quickVerify.log | grep -v 200 | grep -v 302 | grep HTTP quickVerify.log | grep -v 200 | grep -v 302 | ||
** A | ** A couple of 404 errors, eg for http://mozilla2.snt.utwente.nl so checked again when verify was done and the directory at http://mozilla2.snt.utwente.nl/firefox/releases/3.0.12/win32/zh-TW/ was populated | ||
* Before pushing final updates, verify that "release" and "releasetest" channel match: | * Before pushing final updates, verify that "release" and "releasetest" channel match: | ||
# on aus2-staging | # on aus2-staging | ||
cd /opt/aus2/snippets/staging/20090731-Firefox-3.0.13 | |||
find -type d -iregex '.*release.*' | perl -nle '$a = $_; $a =~ s/release/releasetest/; system("diff -r -u $_ ../20090731-Firefox-3.0.13-test/$a");' | |||
==== Publish Updates to Release Channel ==== | ==== Publish Updates to Release Channel ==== | ||
updated AUS' config-dist.php and pushed because of the new MU at this time. | updated AUS' config-dist.php and pushed because of the new MU at this time. | ||
# cltbld@aus2-staging | # cltbld@aus2-staging | ||
cd /opt/aus2/snippets/staging | cd /opt/aus2/snippets/staging | ||
~/bin/backupsnip 20090731-Firefox-3.0.13 | ###### | ||
~/bin/pushsnip 20090731-Firefox-3.0.13 | # skipped backupsnip, as it was done for FF3.5.2 this morning | ||
~/bin/pushsnip 20090731-Firefox-3.0.13-3.5.2-MU | # ~/bin/backupsnip 20090731-Firefox-3.0.13 | ||
###### | |||
time ~/bin/pushsnip 20090731-Firefox-3.0.13 | |||
real 2m21.174s | |||
user 0m0.427s | |||
sys 0m16.176s | |||
time ~/bin/pushsnip 20090731-Firefox-3.0.13-3.5.2-MU | |||
real 0m20.744s | |||
user 0m0.069s | |||
sys 0m2.347s | |||
Made sure that [https://bugzilla.mozilla.org/attachment.cgi?id=391872 this AUS throttle update] got landed, tagged, and pushed (instructions are in the bug). | |||
==== Release ==== | ==== Release ==== | ||
# ffxbld@stage | # ffxbld@stage | ||
cd /home/ftp/pub/firefox/releases | cd /home/ftp/pub/firefox/releases | ||
Line 249: | Line 268: | ||
==== Release matching XULRunner build ==== | ==== Release matching XULRunner build ==== | ||
XULRunner builds are produced by the automation, this is to groom them and push to the mirrors. | XULRunner builds are produced by the automation, this is to groom them and push to the mirrors. | ||
Line 263: | Line 282: | ||
rsync -av --include=*sdk* --exclude=* \ | rsync -av --include=*sdk* --exclude=* \ | ||
/home/ftp/pub/xulrunner/nightly/${VERSION}-candidates/build${BUILD}/ sdk/ | /home/ftp/pub/xulrunner/nightly/${VERSION}-candidates/build${BUILD}/ sdk/ | ||
cp | cp -pv ~/firefox-${FX_VERSION}/stage-merged/source/firefox-${FX_VERSION}-source.tar.bz2 \ | ||
source/xulrunner-${VERSION}-source.tar.bz2 | source/xulrunner-${VERSION}-source.tar.bz2 | ||
cd ~/xulrunner-${VERSION}/batch1 | cd ~/xulrunner-${VERSION}/batch1 | ||
rsync -av stage-unsigned/ stage-signed/ | rsync -av stage-unsigned/ stage-signed/ | ||
Then create detached signatures per [https://intranet.mozilla.org/Build: | Then create detached signatures per [https://intranet.mozilla.org/Build:Signing#Installer.2Farchive_signing_before_release usual process] (with PRODUCT=xulrunner, VERSION=1.9.0.13, don't need BUILD or TAG), skip the win32 signing section, do pgp, verify and upload. Back on stage: | ||
cd ~/xulrunner-${VERSION}/batch1/stage-signed | cd ~/xulrunner-${VERSION}/batch1/stage-signed | ||
cp | cp ~/firefox-${FX_VERSION}/stage-merged/KEY . | ||
~/bin/checksum-files . | ~/bin/checksum-files . | ||
chown -R cltbld:xulrunner . | chown -R cltbld:xulrunner . |