mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-14 05:51:37 +00:00
21 lines
354 B
YAML
21 lines
354 B
YAML
workspace:
|
|
base: /go
|
|
path: src/github.com/drone/envsubst
|
|
|
|
clone:
|
|
git:
|
|
image: plugins/git
|
|
depth: 50
|
|
|
|
pipeline:
|
|
build:
|
|
image: golang:1.7
|
|
commands:
|
|
- echo this step should fail
|
|
- exit 1
|
|
test:
|
|
image: golang:1.7
|
|
commands:
|
|
- echo this step should execute, despite failure
|
|
when:
|
|
status: [ failure ]
|