Releases/Firefox 45.0b7/BuildNotes

From MozillaWiki
Jump to: navigation, search

Firefox

Build 1

Issues

  • both windows en-US build just disappeared, something had marked them as complete and results=2 (failed) in the schedulerdb at ~18:39 PST. This is in the middle of the windows slave outage in bug 1249499 so is probably related. DB state was
mysql> select br.id, br.buildername, from_unixtime(br.complete_at) as complete, br.complete, br.results, substr(br.claimed_by_name,1,20) as claimed_by, from_unixtime(b.start_time) as start, from_unixtime(b.finish_time) as finish from buildrequests as br left join builds as b on b.brid=br.id where br.buildername like 'release-mozilla-beta-%_build' order by br.id desc limit 6;
+----------+-------------------------------------+---------------------+----------+---------+----------------------+---------------------+---------------------+
| id       | buildername                         | complete            | complete | results | claimed_by           | start               | finish              |
+----------+-------------------------------------+---------------------+----------+---------+----------------------+---------------------+---------------------+
| 98369068 | release-mozilla-beta-win64_build    | 2016-02-18 18:39:51 |        1 |       2 | NULL                 | NULL                | NULL                |
| 98369067 | release-mozilla-beta-macosx64_build | 2016-02-18 19:09:57 |        1 |       0 | buildbot-master84.bb | 2016-02-18 17:18:46 | 2016-02-18 19:09:57 |
| 98369066 | release-mozilla-beta-win32_build    | 2016-02-18 18:39:28 |        1 |       2 | NULL                 | NULL                | NULL                |
| 98369065 | release-mozilla-beta-linux64_build  | 2016-02-18 19:33:19 |        1 |       0 | buildbot-master74.bb | 2016-02-18 17:18:49 | 2016-02-18 19:33:19 |
| 98369064 | release-mozilla-beta-linux_build    | 2016-02-18 19:50:35 |        1 |       0 | buildbot-master74.bb | 2016-02-18 17:18:49 | 2016-02-18 19:50:35 |
| 97867785 | release-mozilla-beta-win64_build    | 2016-02-15 18:00:55 |        1 |       0 | buildbot-master70.bb | 2016-02-15 14:10:23 | 2016-02-15 18:00:55 |
+----------+-------------------------------------+---------------------+----------+---------+----------------------+---------------------+---------------------+
  • fixed with this sql to reset the buildrequest state, with the builds starting very quickly with the right buildID and tag properties
mysql> select id, buildername, complete, results from buildrequests where buildername like 'release-mozilla-beta-win%_build' order by id desc limit 4;
+----------+----------------------------------+----------+---------+
| id       | buildername                      | complete | results |
+----------+----------------------------------+----------+---------+
| 98369068 | release-mozilla-beta-win64_build |        1 |       2 |
| 98369066 | release-mozilla-beta-win32_build |        1 |       2 |
| 97867785 | release-mozilla-beta-win64_build |        1 |       0 |
| 97867783 | release-mozilla-beta-win32_build |        1 |       0 |
+----------+----------------------------------+----------+---------+

mysql> update buildrequests set complete=0, results=NULL where id in (98369068, 98369066) limit 2;
Query OK, 2 rows affected (0.00 sec)
Rows matched: 2  Changed: 2  Warnings: 0