Releases/Fennec 4.0b5/BuildNotes: Difference between revisions

 
(11 intermediate revisions by the same user not shown)
Line 23: Line 23:


== Tags  ==
== Tags  ==
On mozilla-central:


{| class="fullwidth-table"
{| class="fullwidth-table"
Line 41: Line 39:
| [http://hg.mozilla.org/mozilla-central/rev/a4499e291e4 a4499e291e4]
| [http://hg.mozilla.org/mozilla-central/rev/a4499e291e4 a4499e291e4]
| [http://hg.mozilla.org/mobile-browser/rev/d04d9e1d3cea d04d9e1d3cea]
| [http://hg.mozilla.org/mobile-browser/rev/d04d9e1d3cea d04d9e1d3cea]
|-
| rowspan="2" | build 2
| GECKO20b12pre_20110216_RELBRANCH
| [http://hg.mozilla.org/mozilla-central/rev/8a91ff54417a 8a91ff54417a] 
| [http://hg.mozilla.org/mobile-browser/rev/d04d9e1d3cea d04d9e1d3cea]
|-
| FENNEC_4_0b4_RELEASE, FENNEC_4_0b4_BUILD2
| [http://hg.mozilla.org/mozilla-central/rev/9693e30b9c9c 9693e30b9c9c]
| [http://hg.mozilla.org/mobile-browser/rev/d04d9e1d3cea d04d9e1d3cea]
|-
| rowspan="2" | build 3
| GECKO20b12pre_20110216_RELBRANCH
| [http://hg.mozilla.org/mozilla-central/rev/eb8deade928b eb8deade928b] 
| [http://hg.mozilla.org/mobile-browser/rev/200420bfde35 200420bfde35]
|-
| FENNEC_4_0b4_RELEASE, FENNEC_4_0b4_BUILD2
| [http://hg.mozilla.org/mozilla-central/rev/8a91ff54417a 8a91ff54417a]
| [http://hg.mozilla.org/mobile-browser/rev/c1e058767216 c1e058767216]
|}
|}


Line 52: Line 68:
| style="background: none repeat scroll 0% 0% rgb(239, 239, 239);" | '''Build machine'''
| style="background: none repeat scroll 0% 0% rgb(239, 239, 239);" | '''Build machine'''
|-
|-
| rowspan="5" | build 2
| rowspan="5" | build 3
| Android
| Android
|  
| 20110217140304
|  
| see build3 builds & repacks section
|-
|-
| Maemo5-GTK
| Maemo5-GTK
|  
| 20110217130947
|  
| ''
|-
|-
| Linux  
| Linux  
|  
| 20110217134148
|  
| ''
|-
|-
| Mac  
| Mac  
|  
|  
|  
| ''
|-
|-
| Windows  
| Windows  
|  
|  
|  
| ''
|}
|}


Line 134: Line 150:
| style="background: none repeat scroll 0% 0% rgb(239, 239, 239);" | '''maemo5-gtk'''
| style="background: none repeat scroll 0% 0% rgb(239, 239, 239);" | '''maemo5-gtk'''
|-
|-
| mw32-ix-slave#
| mw32-ix-slave20
| mv-moz2-linux-ix-slave#
| mv-moz2-linux-ix-slave13
| moz2-darwin9-slave#
| moz2-darwin9-slave45
| mv-moz2-linux-ix-slave#
| mv-moz2-linux-ix-slave05
| mv-moz2-linux-ix-slave#
| mv-moz2-linux-ix-slave19
|-
|-
| First attempt to build timeout out cloning m-c, forced a rebuild
| No problems
| No problems?
| No problems?
| No problems?
| No problems
| No problems?
| No problems
| No problems?
| No problems?
|}
|}
=====repack=====
=====repack=====
Line 150: Line 166:




'''Respin called because of [https://bugzilla.mozilla.org/show_bug.cgi?id=609705 bug 609705] which turned off android updater and thus the feedback button was not in the build'''
'''Respin called''' they backed out {{bug|631058}} from mozilla-central which was causing some crashes (both on mobile and desktop) and took {{bug|634788}} on mobile-browser (which was a typo bug causing us to allocate very large memory buffers on some websites in certain cases). I reverted part of {{bug|609705}} to put android back on the beta channel


===Build 3===
===Build 3===
Line 166: Line 182:


==== Source ====
==== Source ====
mv-moz2-linux-ix-slave20
No problems


====Build & Repack ====
====Build & Repack ====
Line 189: Line 208:
|}
|}
=====repack=====
=====repack=====
no problems


====Sign Android====
====Sign Android====
ffxbld@stage
mkdir /home/ftp/pub/mobile/candidates/4.0b5-candidates/build3/android-r7
<pre>
# on keymaster in ~/signing-work
mkdir fennec-4.0b5
cd fennec-4.0b5/
# we signed both en-US and multi since no one was sure in #mobile which to do
# need sep dirs since they are both named gecko-unsigned-unaligned.apk
mkdir -p build3/en-US
mkdir build3/multi
# get en-US apk
cd build3/en-US/
wget http://stage.mozilla.org/pub/mozilla.org/mobile/candidates/4.0b5-candidates/build3/unsigned/android-r7/en-US/gecko-unsigned-unaligned.apk
# get multi apk
cd ../multi/
wget http://stage.mozilla.org/pub/mozilla.org/mobile/candidates/4.0b5-candidates/build3/unsigned/android-r7/gecko-unsigned-unaligned.apk
# put the signing script in the ~/signing-work/fennec-4.0b5/ dir
cp ~/hg-tools/release/signing/* .
# copy the en-US apk up to pwd for signing -- there is a bug on this (608432
), it's because sign_android.sh relies on mozpass.py and that has to be in the same dir as .apk to work
cp build3/en-US/gecko-unsigned-unaligned.apk .
./sign_android.sh
* if any problems with signing, remove gecko-unaligned.apk and start again
# signing successful?  copy back to the en-US
mv gecko-unaligned.apk build3/en-US/
# rename the fennec.apk, then move
mv fennec.apk fennec-4.0b5.en-US.eabi-arm.apk
mv fennec-4.0b5.en-US.eabi-arm.apk build3/en-US/
# clean up any left overs 
rm *.apk
# repeat for multi
cp build3/multi/gecko-unsigned-unaligned.apk .
./sign_android.sh
mv gecko-unaligned.apk build3/multi/
mv fennec.apk fennec-4.0b5.multi.eabi-arm.apk
mv fennec-4.0b5.multi.eabi-arm.apk build3/multi/
rm *.apk
# upload to stage
cd build1/
scp -i ~/.ssh/ffxbld_dsa -r * ffxbld@stage.mozilla.org:/home/ftp/pub/mobile/candidates/4.0b5-candidates/build3/android-r7
</pre>


==== Deb Repos====
==== Deb Repos====
Force build on pmm:8011 m-c release: no problems.
==== Push Live ====
==== Push Live ====
===== Copy bits to releases/ =====
===== Copy bits to releases/ =====
<pre>
# ffxbld@stage /home/ftp/pub/mobile/releases
mkdir 4.0b5
cd 4.0b5
# exclude *old* to avoid copying in the old original android apk
# exclude maemo5-gtk to skip single locale repacks
rsync --dry-run -av --exclude=unsigned --exclude=*.txt --exclude=*crashreporter* --exclude=*tests* --exclude=*unaligned* --exclude=*old* --exclude=maemo5-gtk ../../candidates/4.0b5-candidates/build3/. .
rsync -av --exclude=unsigned --exclude=*.txt --exclude=*crashreporter* --exclude=*tests* --exclude=*unaligned* --exclude=*old* --exclude=maemo5-gtk ../../candidates/4.0b5-candidates/build3/. .
mkdir maemo5-gtk
cd maemo5-gtk
rsync --dry-run -av --exclude=unsigned --exclude=*.txt --exclude=*crashreporter* --exclude=*tests* --exclude=*unaligned* --exclude=*old* ../../../candidates/4.0b5-candidates/build3/maemo5-gtk/multi .
rsync -av --exclude=unsigned --exclude=*.txt --exclude=*crashreporter* --exclude=*tests* --exclude=*unaligned* --exclude=*old* --exclude=maemo5-gtk ../../../candidates/4.0b5-candidates/build3/maemo5-gtk/multi .
cd ..
# and repos
mkdir repos
rsync -av --exclude=*.install ../../candidates/4.0b5-candidates/repos/ repos/
# symlink repos
ln -s repos maemo
cd ..
rm latest-beta; ln -s 4.0b5 latest-beta
rm latest-alpha; ln -s 4.0b5 latest-alpha
</pre>


===== Create new .install files =====
===== Create new .install files =====
Line 201: Line 303:
===== Create bouncer entries =====
===== Create bouncer entries =====


  # do not create android link going forward, it is not needed as bits are stored on android market
  # did not create android link as bits are stored on android market
Firefox-Mobile-4.0b5 maemo /mobile/releases/maemo/:lang/firefox-beta.install
Confirmed users
4,467

edits