.
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Giles Bradshaw 2020-04-24 11:10:50 +01:00
parent 10cec72724
commit 190374791b
1 changed files with 6 additions and 3 deletions

View File

@ -1,7 +1,7 @@
def steps(): def steps(name):
return { return {
"kind": "pipeline", "kind": "pipeline",
"name": "build", "name": name,
"steps": [ "steps": [
{ {
"name": "build", "name": "build",
@ -14,5 +14,8 @@ def steps():
} }
def main(ctx): def main(ctx):
return steps() return [
steps('first'),
steps('second'),
]