Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F106117400
HarbormasterArcLintBuildStepImplementation.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Sat, Mar 22, 15:13
Size
905 B
Mime Type
text/x-php
Expires
Mon, Mar 24, 15:13 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
24995775
Attached To
rPH Phabricator
HarbormasterArcLintBuildStepImplementation.php
View Options
<?php
final
class
HarbormasterArcLintBuildStepImplementation
extends
HarbormasterBuildStepImplementation
{
const
STEPKEY
=
'arcanist.lint'
;
public
function
getBuildStepAutotargetPlanKey
()
{
return
HarbormasterBuildArcanistAutoplan
::
PLANKEY
;
}
public
function
getBuildStepAutotargetStepKey
()
{
return
self
::
STEPKEY
;
}
public
function
shouldRequireAutotargeting
()
{
return
true
;
}
public
function
getName
()
{
return
pht
(
'Arcanist Lint Results'
);
}
public
function
getGenericDescription
()
{
return
pht
(
'Automatic `arc lint` step.'
);
}
public
function
getBuildStepGroupKey
()
{
return
HarbormasterBuiltinBuildStepGroup
::
GROUPKEY
;
}
public
function
execute
(
HarbormasterBuild
$build
,
HarbormasterBuildTarget
$build_target
)
{
return
;
}
public
function
shouldWaitForMessage
(
HarbormasterBuildTarget
$target
)
{
return
true
;
}
}
Event Timeline
Log In to Comment