Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15436941
D13436.id32538.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
D13436.id32538.diff
View Options
diff --git a/src/workflow/ArcanistDiffWorkflow.php b/src/workflow/ArcanistDiffWorkflow.php
--- a/src/workflow/ArcanistDiffWorkflow.php
+++ b/src/workflow/ArcanistDiffWorkflow.php
@@ -2734,12 +2734,24 @@
$lint[$key] = $this->getModernLintDictionary($message);
}
+ // Consider this target to have failed if there are any unresolved
+ // errors or warnings.
+ $type = 'pass';
+ foreach ($lint as $message) {
+ switch (idx($message, 'severity')) {
+ case ArcanistLintSeverity::SEVERITY_WARNING:
+ case ArcanistLintSeverity::SEVERITY_ERROR:
+ $type = 'fail';
+ break;
+ }
+ }
+
$futures[] = $this->getConduit()->callMethod(
'harbormaster.sendmessage',
array(
'buildTargetPHID' => $lint_target,
'lint' => array_values($lint),
- 'type' => $lint ? 'fail' : 'pass',
+ 'type' => $type,
));
}
@@ -2775,6 +2787,9 @@
}
return true;
} catch (Exception $ex) {
+ // TODO: Eventually, we should expect these to succeed if we get this
+ // far, but just log errors for now.
+ phlog($ex);
return false;
}
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Wed, Mar 26, 4:48 PM (1 w, 3 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7332390
Default Alt Text
D13436.id32538.diff (1 KB)
Attached To
Mode
D13436: Don't fail lint builds for "advice"; make lint/unit upload failures louder
Attached
Detach File
Event Timeline
Log In to Comment