canmove, Confirmed users
2,850
edits
ChrisCooper (talk | contribs) m (→Build 3) |
ChrisCooper (talk | contribs) No edit summary |
||
Line 287: | Line 287: | ||
* kicked off by hand due to stage step "failing." No problems | * kicked off by hand due to stage step "failing." No problems | ||
==== Push updates to beta channel ==== | |||
# cltbld@aus2-staging.m.o | |||
# make sure scripts are up to date | |||
cd bin | |||
cvs update | |||
cd /opt/aus2/snippets/staging/ | |||
~/bin/backupsnip 20091202-Firefox-3.0.16-beta | |||
Then on official "go" email do pushsnip: | |||
~/bin/pushsnip 20091202-Firefox-3.0.16-beta | |||
==== 3.0.16 -> 3.5.6 Major Update Refresh ==== | |||
* version bumps for [http://bonsai.mozilla.org/cvsview2.cgi?diff_mode=context&whitespace_mode=show&file=moz19-branch-major-update-patcher2.cfg&branch=&root=/cvsroot&subdir=mozilla/tools/patcher-configs&command=DIFF_FRAMESET&rev1=1.15&rev2=1.16 patcher config] and [http://hg.mozilla.org/build/tools/rev/90434a7d07c5 release/update] | |||
===== Snippet Generation ===== | |||
<font color="red"><b>*** DONE TO HERE ***</b></font> | <font color="red"><b>*** DONE TO HERE ***</b></font> | ||
==== | On fx-linux-1.9-slave2: | ||
<pre> | |||
mkdir -p /builds/3.0.16-3.5.6-major-update/snippets | |||
cd /builds/3.0.16-3.5.6-major-update/snippets | |||
cvs -d:ext:cltbld@cvs.mozilla.org:/cvsroot co -d patcher-configs mozilla/tools/patcher-configs | |||
cvs -d:ext:cltbld@cvs.mozilla.org:/cvsroot co -r UPDATE_PACKAGING_R9 -d patcher mozilla/tools/patcher | |||
cd patcher | |||
cvs -d:ext:cltbld@cvs.mozilla.org:/cvsroot co -r UPDATE_PACKAGING_R9 -d MozBuild mozilla/tools/release/MozBuild | |||
export CVSROOT=:ext:cltbld@cvs.mozilla.org:/cvsroot | |||
# build tools | |||
./patcher2.pl --build-tools --app=firefox --tools-rev=UPDATE_PACKAGING_R9 --config=../patcher-configs/moz19-branch-major-update-patcher2.cfg 2>&1 | tee ../firefox_build-tools.log | |||
# download mars | |||
./patcher2.pl --download --app=firefox --config=../patcher-configs/moz19-branch-major-update-patcher2.cfg 2>&1 | tee ../firefox_download.log | |||
# FIXME - patcher needs to see that the MARs that it thinks are partials | |||
# are there or else it will not attempt to generate patchinfo | |||
cd temp/firefox | |||
ln -s 3.5.6 3.0.16-3.5.6 | |||
cd ../.. | |||
# Create partial patches and snippets | |||
./patcher2.pl --create-patches --app=firefox --config=../patcher-configs/moz19-branch-major-update-patcher2.cfg 2>&1 | tee ../firefox-create-patches.log | |||
</pre> | |||
===== Quick Verify ===== | |||
Check that releasetest = beta = release. | |||
'''New in 3.0.15 we now use a new dir for beta''' | |||
cd temp/firefox/3.0.16-3.5.6 | |||
# releasetest == beta | |||
find aus2.test -type d -iregex '.*/releasetest$' | perl -nle '$a = $_; $a =~ s/releasetest/beta/; $a =~ s/aus2\.test/aus2.beta/; system("diff -r -u $_ $a");' | |||
find aus2.beta -type d -iregex '.*/beta$' | perl -nle '$a = $_; $a =~ s/beta$/releasetest/; $a =~ s/aus2\.beta/aus2.test/; system("diff -r -u $_ $a");' | |||
# beta == release | |||
find aus2.beta -type d -iregex '.*/beta$' | perl -nle '$a = $_; $a =~ s/aus2\.beta/aus2/; $a =~ s/beta/release/; system("diff -r -u $_ $a");' | |||
find aus2 -type d -iregex '.*/release$' | perl -nle '$a = $_; $a =~ s/release$/beta/; $a =~ s/aus2/aus2.beta/; system("diff -r -u $_ $a");' | |||
==== Sign Installers ==== | ==== Sign Installers ==== |