Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F958231
HarbormasterLeaseHostBuildStepImplementation.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
HarbormasterLeaseHostBuildStepImplementation.php
View Options
<?php
final
class
HarbormasterLeaseHostBuildStepImplementation
extends
HarbormasterBuildStepImplementation
{
public
function
getName
()
{
return
pht
(
'Lease Host'
);
}
public
function
getGenericDescription
()
{
return
pht
(
'Obtain a lease on a Drydock host for performing builds.'
);
}
public
function
execute
(
HarbormasterBuild
$build
,
HarbormasterBuildTarget
$build_target
)
{
$settings
=
$this
->
getSettings
();
// Create the lease.
$lease
=
id
(
new
DrydockLease
())
->
setResourceType
(
'host'
)
->
setAttributes
(
array
(
'platform'
=>
$settings
[
'platform'
],
))
->
queueForActivation
();
// Wait until the lease is fulfilled.
// TODO: This will throw an exception if the lease can't be fulfilled;
// we should treat that as build failure not build error.
$lease
->
waitUntilActive
();
// Create the associated artifact.
$artifact
=
$build
->
createArtifact
(
$build_target
,
$settings
[
'name'
],
HarbormasterBuildArtifact
::
TYPE_HOST
);
$artifact
->
setArtifactData
(
array
(
'drydock-lease'
=>
$lease
->
getID
(),
));
$artifact
->
save
();
}
public
function
getArtifactOutputs
()
{
return
array
(
array
(
'name'
=>
pht
(
'Leased Host'
),
'key'
=>
$this
->
getSetting
(
'name'
),
'type'
=>
HarbormasterBuildArtifact
::
TYPE_HOST
,
),
);
}
public
function
getFieldSpecifications
()
{
return
array
(
'name'
=>
array
(
'name'
=>
pht
(
'Artifact Name'
),
'type'
=>
'text'
,
'required'
=>
true
,
),
'platform'
=>
array
(
'name'
=>
pht
(
'Platform'
),
'type'
=>
'text'
,
'required'
=>
true
,
),
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Tue, Jun 17, 8:25 PM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
227604
Default Alt Text
HarbormasterLeaseHostBuildStepImplementation.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment