Confirmed users
4,293
edits
(Add second iteration) |
|||
| Line 67: | Line 67: | ||
The second iteration, to test what other packaging fixes we need ahead of b4. | The second iteration, to test what other packaging fixes we need ahead of b4. | ||
===Generate updates=== | |||
# ssh cltbld@fx-linux-1.9-slave2 (prod 1.9 box) | |||
mkdir /builds/updates/firefox-20012-3b3-fake-major/ | |||
cd /builds/updates/firefox-20012-3b3-fake-major/ | |||
cvs -d cltbld@cvs.mozilla.org:/cvsroot co -d patcher -r UPDATE_PACKAGING_R1 mozilla/tools/patcher | |||
# check out MozBuild | |||
cd patcher | |||
cvs -d cltbld@cvs.mozilla.org:/cvsroot co -d MozBuild -r UPDATE_PACKAGING_R1 mozilla/tools/release/MozBuild | |||
cd .. | |||
# config now lives in public repo | |||
cvs -d cltbld@cvs.mozilla.org:/cvsroot co -d config mozilla/tools/patcher-configs/moz18-branch-major-update-patcher2.cfg | |||
# apply patch waiting for review | |||
cd config | |||
curl -s https://bugzilla.mozilla.org/attachment.cgi?id=304201 | patch -p0 | |||
cd .. | |||
cd patcher | |||
export CVSROOT=cltbld@cvs.mozilla.org:/cvsroot | |||
# build tools | |||
./patcher2.pl --build-tools --app=firefox --tools-rev=UPDATE_PACKAGING_R1 \ | |||
--config=../config/moz18-branch-major-update-patcher2.cfg 2>&1 | tee firefox_build-tools.log | |||
# download complete MARs | |||
# FIXME - we only really need to "to" mars, not the "from" mars, but there must be "from" | |||
# mars present for patcher to build the patchinfo | |||
./patcher2.pl --download --app=firefox \ | |||
--config=../config/moz18-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.0b3 2.0.0.12-3.0b3 | |||
cd ../.. | |||
# Create partial patches and snippets | |||
./patcher2.pl --create-patches --app=firefox \ | |||
--config=../config/moz18-branch-major-update-patcher2.cfg 2>&1 | tee firefox-create-patches.log | |||
Push these to the aus staging box as 20080219-Fx20012-3b3-MUTest. | |||