Page MenuHomePhabricator

D13436.id32538.diff
No OneTemporary

D13436.id32538.diff

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

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)

Event Timeline