summaryrefslogtreecommitdiff
path: root/yarns/deployment.yarn
diff options
context:
space:
mode:
authorAdam Coldrick <adam.coldrick@codethink.co.uk>2015-03-23 16:00:23 +0000
committerAdam Coldrick <adam.coldrick@codethink.co.uk>2015-03-23 16:12:33 +0000
commit46c37a048a49a513e1fd4ce89b2f5851694a3aa3 (patch)
tree549edbaca5b3c1055d10d6ff9ff9591de97f4489 /yarns/deployment.yarn
parentf8c24c7e2b7b1e61b85e96d7985eae5ffa4b8de2 (diff)
downloadmorph-46c37a048a49a513e1fd4ce89b2f5851694a3aa3.tar.gz
Add a test for partial deploymentbaserock/adamcoldrick/partial-deploy
Diffstat (limited to 'yarns/deployment.yarn')
-rw-r--r--yarns/deployment.yarn22
1 files changed, 22 insertions, 0 deletions
diff --git a/yarns/deployment.yarn b/yarns/deployment.yarn
index 6ec8c0af..85bb2c9d 100644
--- a/yarns/deployment.yarn
+++ b/yarns/deployment.yarn
@@ -301,6 +301,28 @@ deployment.
THEN morph failed
FINALLY the git server is shut down
+Deploying only part of a system
+-------------------------------
+
+It is possible to only deploy one or more strata or chunks from a system
+when deploying to a tarball or sysroot.
+
+ SCENARIO partially deploying a system
+ GIVEN a workspace
+ AND a git server
+ WHEN the user checks out the system branch called master
+ AND the user builds the system systems/test-system.morph in branch master
+ AND the user attempts to partially deploy tar from cluster clusters/partial-test-cluster.morph in branch master
+ THEN morph succeeded
+ WHEN the user attempts to partially deploy sysroot from cluster clusters/partial-test-cluster.morph in branch master
+ THEN morph succeeded
+
+However, it is not possible to do this when the deployment type is
+something other than tarball or sysroot.
+
+ WHEN the user attempts to partially deploy rawdisk from cluster clusters/partial-test-cluster.morph in branch master
+ THEN morph failed
+
Deploying branch-from-image produced systems
============================================