grim/convey

Bump the version for release
v0.14.0-alpha3
2018-02-20, Gary Kramlich
166a6d1979fa
Bump the version for release
# This file is just to test all the different ways that a task can be defined
tasks:
# implicit
# engine: implicit: docker
# type: implicit: run
implicit:
image: alpine:edge
script:
- echo "implicit"
# implicit-engine
# engine: implict: docker
# type: run
implicit-engine:
type: run
image: alpine:edge
script:
- echo "implicit-engine"
# implicit-type
# engine: docker
# type: implicit: run
implicit-type:
engine: docker
image: alpine:edge
script:
- echo "implicit-type"
# explicit
explicit-old:
engine: docker
type: run
image: alpine:edge
script:
- echo "explicit-old"
# explicit-new
# engine: omitted
# type: docker/run
explicit-new:
type: docker/run
image: alpine:edge
script:
- echo "explicit-new"
explicit-new-unknown:
type: imaginary/type
plans:
default:
stages:
- tasks:
- implicit
- implicit-engine
- implicit-type
- explicit-old
- explicit-new
- tasks:
- explicit-new-unknown