977
edits
Lukasblakk (talk | contribs) |
Lukasblakk (talk | contribs) |
||
| Line 298: | Line 298: | ||
rsync -av /data/cltbld/firefox-3.0.14/stage-merged/ /home/ftp/pub/firefox/releases/3.0.14/ | rsync -av /data/cltbld/firefox-3.0.14/stage-merged/ /home/ftp/pub/firefox/releases/3.0.14/ | ||
* edit the exclude file (as cltbld) /pub/mozilla.org/zz/rsyncd-mozilla-current.exclude to add the new release (3.0.14) and remove the previous release (3.0.13). | * edit the exclude file (as cltbld) /pub/mozilla.org/zz/rsyncd-mozilla-current.exclude to add the new release (3.0.14) and remove the previous release (3.0.13). | ||
==== Final Verification ==== | |||
hg clone http://hg.mozilla.org/build/tools | |||
cd tools/release/updates | |||
cat moz19-firefox-*.cfg | grep -v major | sed 's/betatest/releasetest/' > update.cfg | |||
./verify.sh -t update.cfg 2>&1 | tee quickVerify.log | |||
* Look for any HTTP error codes besides 200 ("OK") and 302 ("Found"): | |||
grep HTTP quickVerify.log | grep -v 200 | grep -v 302 | |||
** No Problems | |||
* Before pushing final updates, verify that "release" and "releasetest" channel match: | |||
# on aus2-staging | |||
cd /opt/aus2/snippets/staging/20090827-Firefox-3.0.14 | |||
find -type d -iregex '.*release.*' | perl -nle '$a = $_; $a =~ s/release/releasetest/; system("diff -r -u $_ ../20090827-Firefox-3.0.14-test/$a");' | |||
edits