Confirmed users
4,293
edits
(→Checklist: apple upload done) |
(→Build 2: whatsnew munging) |
||
| Line 35: | Line 35: | ||
== Checklist == | == Checklist == | ||
*<s> (RelMan) [[Release:Release_Automation_on_Mercurial:Preparation#L10N_Changesets | Ship the l10n milestone]] | *<s> (RelMan) [[Release:Release_Automation_on_Mercurial:Preparation#L10N_Changesets | Ship the l10n milestone]] | ||
* (RelMan) [[Release:Release_Automation_on_Mercurial:Starting_a_Release#Submit_to_Ship_It | Submit to Ship It]] | * (RelMan) [[Release:Release_Automation_on_Mercurial:Starting_a_Release#Submit_to_Ship_It | Submit to Ship It]] | ||
* [[Release:Release_Automation_on_Mercurial:Updates_through_Shipping#Upload_files_to_Apple_for_Whitelisting | Upload to Apple]] - upload complete and notified | * [[Release:Release_Automation_on_Mercurial:Updates_through_Shipping#Upload_files_to_Apple_for_Whitelisting | Upload to Apple]]</s> - upload complete and notified | ||
* [[Releases/Firefox_33.0.1/BuildNotes#Remove_whatsnew_pages_for_29.0_and_later | Remove whatsnew pages for 29.0 and later (bug 1057460)]] | * <s>[[Releases/Firefox_33.0.1/BuildNotes#Remove_whatsnew_pages_for_29.0_and_later | Remove whatsnew pages for 29.0 and later (bug 1057460)]]</s> | ||
* [[Release:Release_Automation_on_Mercurial:Updates#Push_to_mirrors | Push to mirrors]] | * [[Release:Release_Automation_on_Mercurial:Updates#Push_to_mirrors | Push to mirrors]] | ||
* [[Release:Release_Automation_on_Mercurial:Updates_through_Shipping#Do_I_need_to_throttle.3F | Apply Throttling ]] | * [[Release:Release_Automation_on_Mercurial:Updates_through_Shipping#Do_I_need_to_throttle.3F | Apply Throttling ]] | ||
| Line 45: | Line 45: | ||
== Issues == | == Issues == | ||
* | * | ||
== Remove whatsnew pages | == Remove whatsnew pages for 29.0 and later == | ||
<pre># 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 | |||
</pre> | |||