Confirmed users
4,293
edits
| Line 60: | Line 60: | ||
=== Generate snippets === | === Generate snippets === | ||
Can be done once all platforms have completed l10n. | Can be done once all platforms have completed l10n. '''NOT DONE YET''' | ||
<pre> | |||
# generate snippets (on b-linux64-hp-0029): | |||
mkdir ~/bug1015968/ | |||
cd ~/bug1015968/ | |||
hg clone http://hg.mozilla.org/build/tools | |||
cd tools | |||
wget -O- https://bugzilla.mozilla.org/attachment.cgi?id=8478911 | patch -p1 | |||
cd .. | |||
export PYTHONPATH="tools/lib/python:tools/lib/python/vendor" | |||
python tools/scripts/updates/create-snippets.py --config tools/release/patcher-configs/mozBeta-branch-patcher2.cfg \ | |||
--checksums-dir checksums --snippet-dir aus2 --test-snippet-dir aus2.test -v 2>&1 | tee snippets.log | |||
# ditch the betatest snippets, we're going to use releasetest only before pushing to beta | |||
rm -rf aus2.test/Firefox/*/WIN*/*/*/betatest | |||
rm -rf aus2.test/Firefox/*/Lin*/*/*/betatest | |||
rm -rf aus2.test/Firefox/*/Dar*/*/*/betatest | |||
# Sync to aus3-staging | |||
rsync -av -e 'ssh -i /home/cltbld/.ssh/ffxbld_dsa' aus2.test/ \ | |||
ffxbld@aus3-staging.mozilla.org:/opt/aus2/snippets/staging/Firefox-32.0-build1-forbeta-test/ | |||
rsync -av -e 'ssh -i /home/cltbld/.ssh/ffxbld_dsa' aus2/ \ | |||
ffxbld@aus3-staging.mozilla.org:/opt/aus2/snippets/staging/Firefox-32.0-build1-forbeta/ | |||
</pre> | |||
=== Update verify === | === Update verify === | ||
Can be done once snippet generation above is complete. | Can be done once snippet generation above is complete. | ||