grim/convey

34da49589eac
remove the old manual tests as we weren't running them anyways
# This plan extends another plan by overwriting one of the tasks
# and defining its own, then defining its own plan. The two are
# merged where anything in the extending file overwrites the base.
#
# HEY one
# HEY two
# HEY three
extends: base.yml
environment:
- PREFIX=HEY
tasks:
two:
type: docker/run
image: alpine:edge
command: echo "${PREFIX} TWO"
three:
type: docker/run
image: alpine:edge
command: echo "${PREFIX} three"
plans:
default:
stages:
# one is inherited from base.yml
# two is overridden from base.yml
# three is newly defined
- tasks:
- one
- two
- three