mirror of
https://we.phorge.it/source/phorge.git
synced 2025-02-18 01:38:39 +01:00
39 lines
801 B
PHP
39 lines
801 B
PHP
|
<?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 execute(
|
||
|
HarbormasterBuild $build,
|
||
|
HarbormasterBuildTarget $build_target) {
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
public function shouldWaitForMessage(HarbormasterBuildTarget $target) {
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
}
|