Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15426589
D13812.id33355.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
D13812.id33355.diff
View Options
diff --git a/src/applications/harbormaster/storage/build/HarbormasterBuild.php b/src/applications/harbormaster/storage/build/HarbormasterBuild.php
--- a/src/applications/harbormaster/storage/build/HarbormasterBuild.php
+++ b/src/applications/harbormaster/storage/build/HarbormasterBuild.php
@@ -214,6 +214,10 @@
$this->getBuildStatus() === self::STATUS_BUILDING;
}
+ public function isAutobuild() {
+ return ($this->getPlanAutoKey() !== null);
+ }
+
public function createLog(
HarbormasterBuildTarget $build_target,
$log_source,
@@ -336,16 +340,28 @@
}
public function canRestartBuild() {
+ if ($this->isAutobuild()) {
+ return false;
+ }
+
return !$this->isRestarting();
}
public function canStopBuild() {
+ if ($this->isAutobuild()) {
+ return false;
+ }
+
return !$this->isComplete() &&
!$this->isStopped() &&
!$this->isStopping();
}
public function canResumeBuild() {
+ if ($this->isAutobuild()) {
+ return false;
+ }
+
return $this->isStopped() &&
!$this->isResuming();
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Mon, Mar 24, 9:51 AM (1 w, 4 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7225584
Default Alt Text
D13812.id33355.diff (1 KB)
Attached To
Mode
D13812: Prevent Harbormaster autobuilds from being stopped, paused or restarted
Attached
Detach File
Event Timeline
Log In to Comment