grim/convey

closing merged branch
expand-list
2017-10-03, Gary Kramlich
345a52ef04c6
closing merged branch
# This plan includes a task that extends another task with
# a different, higher precedence environment. Running this
# plan should print foo, bar, then baz.
tasks:
foo:
image: gliderlabs/alpine:edge
command: echo "${MESSAGE}"
environment:
- MESSAGE=foo
bar:
type: extend
task: foo
environment:
- MESSAGE=bar
baz:
type: extend
task: bar
environment:
- MESSAGE=baz
plans:
default:
stages:
- tasks: [foo, bar, baz]