grim/convey

remove dev-convey.yml

2020-03-02, Gary Kramlich
e577abd976e0
remove dev-convey.yml
# Intrinsic
The intrinsic package provides some intrinsic tasks that convey provides.
----
## convey/clean Task
A clean task will remove files from the host relative and limited to the working directory of convey.
### Attributes
| Name | Required | Default | Description |
| --------- | -------- | ------- | ----------- |
| files | Yes | | A list of filenames relative to the convey working directory to remove. |
### Example
clean:
type: convey/clean
files:
- convey-amd64
- "**/*.pyc"
- "**/__pycache__"
----
## convey/fail Task
The fail task just automatically fails. It's similar to convey/noop in that it's
mostly used for debugging.
### Attributes
None.
### Example
clean:
type: convey/fail
----
## convey/noop Task
A noop task does nothing. It is a "No Operation" task. It's used primarily in
testing, but could be used for stubbing stuff out or debugging.
### Attributes
None.
### Example
clean:
type: convey/noop
----
### convey/subtask Task
A subtask lets reuse existing tasks by setting the environment.
As of right now, a subtask can **NOT** override an environment variable in it's
parent task, but you can mimic that but having all subtasks setting the
environment variable.
### Attributes
| Name | Required | Default | Description |
| -------- | -------- | ------- | ----------- |
| base | Yes | | The name of the parent task |
### Example
build:
type: docker/run
command: go build -o foo-${GOOS}-${GOARCH}
environment:
- GOARCH=amd64
linux:
type: convey/subtask
base: build
environment:
- GOOS=linux
windows:
type: convey/subtask
base: build
environment:
- GOOS=windows