Confirmed users
4,293
edits
(Created page with "{{bug|1015968}} - nthomas = Build 1 = == Updates for beta channel ==") |
|||
| Line 4: | Line 4: | ||
== Updates for beta channel == | == Updates for beta channel == | ||
Using b-linux64-hp-0026. | |||
<pre> | |||
mkdir ~/bug1015968 | |||
cd ~/bug1015968 | |||
hg clone http://hg.mozilla.org/build/tools | |||
# get a signing token for release certs, 6 hour expiry | |||
export PYTHONPATH=tools/lib/python; export PATH=$PATH:`pwd` | |||
# same as 30.0 | |||
wget -O repack.py https://bugzilla.mozilla.org/attachment.cgi?id=8433787 | |||
# make sure enough disk space is free | |||
python ~/bug1015968/tools/buildfarm/maintenance/purge_builds.py -s 55 -n 'rel-*:45d' -n 'tb-rel-*:45d' /builds/slave | |||
# in separate screen windows, generate other platforms | |||
cd ~/bug1015968 | |||
export PYTHONPATH=tools/lib/python; export PATH=$PATH:`pwd` | |||
time python -u repack.py -f 31.0b9-build1 -t 31.0-build1 -T 31.0b9-build1 -P linux-i686 2>&1 | tee linux.log | |||
# repeat for these: | |||
time python -u repack.py -f 31.0b9-build1 -t 31.0-build1 -T 31.0b9-build1 -P linux-x86_64 --no-env 2>&1 | tee linux64.log | |||
time python -u repack.py -f 31.0b9-build1 -t 31.0-build1 -T 31.0b9-build1 -P mac --no-env 2>&1 | tee mac.log | |||
time python -u repack.py -f 31.0b9-build1 -t 31.0-build1 -T 31.0b9-build1 -P win32 --no-env 2>&1 | tee win32.log | |||
</pre> | |||