Confirmed users
4,293
edits
| Line 198: | Line 198: | ||
* HTTP 500's during update verify, mostly ignorable, reran 3/6 for linux64 | * HTTP 500's during update verify, mostly ignorable, reran 3/6 for linux64 | ||
* problem with the partial for mac/30.0/af, can't unbzip2 the patch for XUL. This shows up in uv 1/6 for mac, and the antivirus run. Planning to regenerate the partial and fix checksums + snippets | * problem with the partial for mac/30.0/af, can't unbzip2 the patch for XUL. This shows up in uv 1/6 for mac, and the antivirus run. Planning to regenerate the partial and fix checksums + snippets | ||
== Regenerate partial from mac 30.0 af == | |||
Using a similar setup to beta partial generation, on b-linux64-hp-0026. | |||
<pre> | |||
mkdir ~/bug1015968-mac-af | |||
cd ~/bug1015968-mac-af | |||
hg clone http://hg.mozilla.org/build/tools | |||
# get a signing token for release certs, put it at ~/bug1015968-mac-af/token | |||
wget -O repack.py https://bugzilla.mozilla.org/attachment.cgi?id=8433787 | |||
# modify repack.py to comment out |locales = getLocales(from_build, to_build)|, replace it with | |||
# |locales = ['af']| | |||
export PYTHONPATH=tools/lib/python; export PATH=$PATH:`pwd` | |||
python -u repack.py -f 30.0-build2 -t 31.0-build2 -T 31.0-build2 -P mac 2>&1 | tee log | |||
# fix up the checksums, removing the original partial info | |||
# edit repacked/31.0-candidates/build2/mac/af/firefox-31.0.checksums to remove 6 earlier lines for | |||
# firefox-30.0-31.0.partial.mar{,.asc} | |||
# resign checksums and mar with gpg | |||
python tools/release/signing/signtool.py -t token -n nonce -c tools/release/signing/host.cert \ | |||
-H signing4.srv.releng.scl3.mozilla.com:9120 \ | |||
-f gpg repacked/31.0-candidates/build2/mac/af/firefox-31.0.checksums | |||
python tools/release/signing/signtool.py -t token -n nonce -c tools/release/signing/host.cert -H signing4.srv.releng.scl3.mozilla.com:9120 -f gpg repacked/31.0-candidates/build2/update/mac/af/firefox-30.0-31.0.partial.mar | |||
rsync -av -e 'ssh -i /home/cltbld/.ssh/ffxbld_dsa' \ | |||
repacked/31.0-candidates/build2/ \ | |||
ffxbld@stage.mozilla.org:/pub/mozilla.org/firefox/candidates/31.0-candidates/build2/ | |||
== Updates for beta channel == | == Updates for beta channel == | ||