1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2025-04-06 17:38:29 +02:00

Allow build steps to create URI artifacts

Summary: Ref T1049.  This allows build steps to create URI artifacts, which can be used to link to external builds and other resources.

Test Plan: Used a build step in an external library to test the creation of a URI artifact and verified it appeared correctly.

Reviewers: epriestley, #blessed_reviewers

Reviewed By: epriestley, #blessed_reviewers

Subscribers: epriestley, Korvin

Maniphest Tasks: T1049

Differential Revision: https://secure.phabricator.com/D10173
This commit is contained in:
James Rhodes 2014-08-08 08:42:36 +10:00
parent bc116d7e02
commit 3785f8113e

View file

@ -13,7 +13,7 @@ final class HarbormasterBuildArtifact extends HarbormasterDAO
const TYPE_FILE = 'file'; const TYPE_FILE = 'file';
const TYPE_HOST = 'host'; const TYPE_HOST = 'host';
const TYPE_BUILD_STATE = 'buildstate'; const TYPE_URI = 'uri';
public static function initializeNewBuildArtifact( public static function initializeNewBuildArtifact(
HarbormasterBuildTarget $build_target) { HarbormasterBuildTarget $build_target) {
@ -69,6 +69,11 @@ final class HarbormasterBuildArtifact extends HarbormasterDAO
->setObjectName(pht('Drydock Lease')) ->setObjectName(pht('Drydock Lease'))
->setHeader($lease->getID()) ->setHeader($lease->getID())
->setHref('/drydock/lease/'.$lease->getID()); ->setHref('/drydock/lease/'.$lease->getID());
case self::TYPE_URI:
return id(new PHUIObjectItemView())
->setObjectName($data['name'])
->setHeader($data['uri'])
->setHref($data['uri']);
default: default:
return null; return null;
} }