WebKit Bugzilla
Attachment 372583 Details for
Bug 199079
: [ews-app] Status bubble should not turn orange when any build step is skipped
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
Patch
bug-199079-20190620171928.patch (text/plain), 1.32 KB, created by
Aakash Jain
on 2019-06-20 14:19:29 PDT
(
hide
)
Description:
Patch
Filename:
MIME Type:
Creator:
Aakash Jain
Created:
2019-06-20 14:19:29 PDT
Size:
1.32 KB
patch
obsolete
>Index: Tools/ChangeLog >=================================================================== >--- Tools/ChangeLog (revision 246652) >+++ Tools/ChangeLog (working copy) >@@ -1,3 +1,12 @@ >+2019-06-20 Aakash Jain <aakash_jain@apple.com> >+ >+ [ews-app] Status bubble should not turn orange when any build step is skipped >+ https://bugs.webkit.org/show_bug.cgi?id=199079 >+ >+ Reviewed by NOBODY (OOPS!). >+ >+ * BuildSlaveSupport/ews-app/ews/views/statusbubble.py: >+ > 2019-06-20 Aakash Jain <aakash_jain@apple.com> > > [ews-build] Triggered builds should use same revision as parent build >Index: Tools/BuildSlaveSupport/ews-app/ews/views/statusbubble.py >=================================================================== >--- Tools/BuildSlaveSupport/ews-app/ews/views/statusbubble.py (revision 246650) >+++ Tools/BuildSlaveSupport/ews-app/ews/views/statusbubble.py (working copy) >@@ -155,7 +155,7 @@ class StatusBubble(View): > > def _does_build_contains_any_failed_step(self, build): > for step in build.step_set.all(): >- if step.result and step.result != Buildbot.SUCCESS and step.result != Buildbot.WARNINGS: >+ if step.result and step.result != Buildbot.SUCCESS and step.result != Buildbot.WARNINGS and step.result != Buildbot.SKIPPED: > return True > return False >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Formatted Diff
|
Diff
Attachments on
bug 199079
: 372583