summaryrefslogtreecommitdiff
path: root/src/buildstream/plugins/elements/script.yaml
diff options
context:
space:
mode:
authorChandan Singh <csingh43@bloomberg.net>2019-04-24 22:53:19 +0100
committerChandan Singh <csingh43@bloomberg.net>2019-05-21 12:41:18 +0100
commit070d053e5cc47e572e9f9e647315082bd7a15c63 (patch)
tree7fb0fdff52f9b5f8a18ec8fe9c75b661f9e0839e /src/buildstream/plugins/elements/script.yaml
parent6c59e7901a52be961c2a1b671cf2b30f90bc4d0a (diff)
downloadbuildstream-070d053e5cc47e572e9f9e647315082bd7a15c63.tar.gz
Move source from 'buildstream' to 'src/buildstream'
This was discussed in #1008. Fixes #1009.
Diffstat (limited to 'src/buildstream/plugins/elements/script.yaml')
-rw-r--r--src/buildstream/plugins/elements/script.yaml25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/buildstream/plugins/elements/script.yaml b/src/buildstream/plugins/elements/script.yaml
new file mode 100644
index 000000000..b388378da
--- /dev/null
+++ b/src/buildstream/plugins/elements/script.yaml
@@ -0,0 +1,25 @@
+# Common script element variables
+variables:
+ # Defines the directory commands will be run from.
+ cwd: /
+
+# Script element configuration
+config:
+
+ # Defines whether to run the sandbox with '/' read-only.
+ # It is recommended to set root as read-only wherever possible.
+ root-read-only: False
+
+ # Defines where to stage elements which are direct or indirect dependencies.
+ # By default, all direct dependencies are staged to '/'.
+ # This is also commonly used to take one element as an environment
+ # containing the tools used to operate on the other element.
+ # layout:
+ # - element: foo-tools.bst
+ # destination: /
+ # - element: foo-system.bst
+ # destination: %{build-root}
+
+ # List of commands to run in the sandbox.
+ commands: []
+