Confirmed users
3,104
edits
(Created page with "= Build 1 = == RC == === Updates === on b-linux64-hp-0020 <pre> mkdir bug1118476 cd bug1118476 hg clone http://hg.mozilla.org/build/tools wget -O repack.py https://bugzilla.m...") |
|||
| Line 23: | Line 23: | ||
time python -u repack.py -f 35.0b8-build1 -t 35.0-build1 -T 35.0b8-build1 -P win32 --no-env 2>&1 | tee win32.log | time python -u repack.py -f 35.0b8-build1 -t 35.0-build1 -T 35.0b8-build1 -P win32 --no-env 2>&1 | tee win32.log | ||
</pre> | </pre> | ||
... | ... ^ in progress, to be done below | ||
<pre> | |||
# fix permissions and upload to stage | |||
find repacked/ -type f -exec chmod 644 {} \; | |||
find repacked/ -type d -exec chmod 755 {} \; | |||
# rsync -n is your friend | |||
rsync -av -e 'ssh -i /home/cltbld/.ssh/ffxbld_dsa' \ | |||
repacked/35.0-candidates/build1/ \ | |||
ffxbld@stage.mozilla.org:/pub/mozilla.org/firefox/candidates/35.0-candidates/build1/ | |||
# reran check_permissions builder to make sure all is correct. | |||
# run av scan on partials, anyone on stage | |||
cd /pub/mozilla.org/firefox/candidates/35.0-candidates/build1/update | |||
nice ionice -c2 -n7 extract_and_run_command.py -j2 clamdscan -m --no-summary -- \ | |||
`find . -name firefox-35.0b8-35.0.partial.mar` 2>&1 | tee /tmp/av.log | |||
</pre> | |||