grim/convey

9d2745690a29
Add environment support to metaplans. Fixes CONVEY-185
default-plan: everything
tasks:
one:
type: docker/run
image: alpine:edge
command: echo one
two:
type: docker/run
image: alpine:edge
command: echo two
plans:
plan1:
stages:
- tasks:
- one
plan2:
stages:
- tasks:
- two
meta-plans:
default:
plans:
- plan1
- plan2