mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-11 01:12:41 +01:00
284fe0fe51
Summary: Ref T9252. This is still crude in a few ways but basically works, at least for commits. Test Plan: - Made a build plan with just this build step. - Ran `bin/harbormaster build --plan 10 ...` on a commit. - It actually built a working copy, leased it, took no action, and released the lease. MAGIC~~~ Reviewers: chad Reviewed By: chad Maniphest Tasks: T9252 Differential Revision: https://secure.phabricator.com/D14160
16 lines
315 B
PHP
16 lines
315 B
PHP
<?php
|
|
|
|
final class HarbormasterHostArtifact
|
|
extends HarbormasterDrydockLeaseArtifact {
|
|
|
|
const ARTIFACTCONST = 'host';
|
|
|
|
public function getArtifactTypeName() {
|
|
return pht('Drydock Host');
|
|
}
|
|
|
|
public function getArtifactTypeDescription() {
|
|
return pht('References a host lease from Drydock.');
|
|
}
|
|
|
|
}
|