Releases/Firefox 33.0.2/BuildNotes

From MozillaWiki
Jump to: navigation, search

bug 1089928

Build 1

Checklist

  • Upload to Apple Done but Apple not notified because build2 had already started
  • Remove whatsnew pages for 29.0 and later
  • started build2 before proceeding any further

Issues

Two win32_partner_repack jobs ran (there were two buildreqeuests, still investigating why in bug 1089926), which resulted in

ran manually:

find /pub/mozilla.org/firefox/candidates/33.0.2-candidates/build1/ -type f ! -perm 644 | wc -l 

... and it returned 0.

rsync would have left a file with different permissions from 644 on disk. Job retriggered and was green,

  • failed antivirus
Command failed for the following files:
/pub/mozilla.org/firefox/candidates/33.0.2-candidates/build1/win32-EUballot/ca/.Firefox Setup 33.0.2.exe.tryBsB
command: ERROR
ERROR: Can't access file /pub/mozilla.org/firefox/candidates/33.0.2-candidates/build1/win32-EUballot/ca/.Firefox Setup 33.0.2.exe.tryBsB

Did a manual verify: ".Firefox Setup 33.0.2.exe.tryBsB" does not exist on stage.mozilla.org, which is likely because it was an rsync temporary file. Job rerun and was green.

Build 2

Checklist

Issues

Remove whatsnew pages for 29.0 and later

# ffxbld@aus3-staging
cd /opt/aus2/snippets

# fix up the test snippets
mkdir -p staging/Firefox-33.0.2-build2-test-fixed-whatsnew/Firefox
rsync -a pushed/Firefox-33.0.2-build2-test/Firefox/{29.0*,3*} staging/Firefox-33.0.2-build2-test-fixed-whatsnew/Firefox/
find staging/Firefox-33.0.2-build2-test-fixed-whatsnew -type f -exec sed -i -e '/^openURL/d' -e 's,^actions=showURL,actions=silent,' {} \;
diff -ru pushed/Firefox-33.0.2-build2-test/ staging/Firefox-33.0.2-build2-test-fixed-whatsnew | less

~/bin/pushsnip Firefox-33.0.2-build2-test-fixed-whatsnew

# fix up the release snippets
mkdir -p staging/Firefox-33.0.2-build2.bak/Firefox
rsync -a staging/Firefox-33.0.2-build2/Firefox/{29.0*,3*} staging/Firefox-33.0.2-build2.bak/Firefox/
find staging/Firefox-33.0.2-build2/Firefox/{29.0*,3*} -type f -exec sed -i -e '/^openURL/d' -e 's,^actions=showURL,actions=silent,' {} \;
diff -ru staging/Firefox-33.0.2-build2.bak staging/Firefox-33.0.2-build2 | less
rm -rf staging/Firefox-33.0.2-build2.bak