Confirmed users
4,293
edits
m (upload to apple complete) |
(→Manual work to finish shipping: bouncer & uptake) |
||
| Line 53: | Line 53: | ||
On buildbot-master81: | On buildbot-master81: | ||
<pre> | <pre> | ||
mkdir bug1094569/; cd $_ | mkdir -p !/bug1094569/push_to_mirrors; cd $_ | ||
hg clone https://hg.mozilla.org/build/tools scripts | hg clone https://hg.mozilla.org/build/tools scripts | ||
hg -R scripts update -C -r FIREFOX_33_0_3_RELEASE | hg -R scripts update -C -r FIREFOX_33_0_3_RELEASE | ||
| Line 59: | Line 59: | ||
-b https://hg.mozilla.org/build/buildbot-configs -t FIREFOX_33_0_3_RELEASE \ | -b https://hg.mozilla.org/build/buildbot-configs -t FIREFOX_33_0_3_RELEASE \ | ||
push '--extra-excludes=*.zip' '--extra-excludes=*.zip.asc' --ssh-user ffxbld --ssh-key ffxbld_rsa 2>&1 | tee push_to_mirrors.log | push '--extra-excludes=*.zip' '--extra-excludes=*.zip.asc' --ssh-user ffxbld --ssh-key ffxbld_rsa 2>&1 | tee push_to_mirrors.log | ||
<pre> | </pre> | ||
== Bouncer submission == | == Bouncer submission == | ||
Never happened for build1, we forgot to run it earlier for build2. Now we have to do it manually: | Never happened for build1, we forgot to run it earlier for build2. Now we have to do it manually. | ||
On buildbot-master81: | |||
<pre> | |||
mkdir -p ~/bug1094569/bouncer_submitter; cd $_ | |||
hg clone https://hg.mozilla.org/build/mozharness scripts | |||
hg -R scripts update -C -r FIREFOX_33_0_3_RELEASE | |||
cp /builds/buildbot/build_scheduler/master/BuildSlaves.py oauth.txt | |||
python2.7 scripts/scripts/bouncer_submitter.py -c releases/bouncer_firefox_release.py --revision FIREFOX_33_0_3_RELEASE \ | |||
--repo releases/mozilla-release --version 33.0.3 --credentials-file oauth.txt \ | |||
--bouncer-api-prefix https://bounceradmin.mozilla.com/api \ | |||
--previous-version 33.0 --previous-version 33.0.2 --previous-version 32.0.3 2>&1 | tee bouncer_submitter.log | |||
</pre> | |||
== Check uptake == | == Check uptake == | ||
Look at [https://bounceradmin.mozilla.com/stats/uptake/?p=3660&p=3659&p=3658&p=3665&p=3663&p=3664&p=3661&p=3662 bouncer uptake]. More than 10K for updates, and more than 2M for installers, which is what we want. NB entries with 0 uptake aren't shown, so cross check against list of products and platforms was needed. | |||
== Final verification == | |||