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

This commit is contained in:
Giles Bradshaw 2020-04-24 13:06:53 +01:00
parent 81a9cd8999
commit e68e8f2fb1
1 changed files with 4 additions and 3 deletions

View File

@ -32,13 +32,14 @@ def printSecrets(env):
} }
def steps(name): def steps(name, dependsOn):
return { return {
"kind": "pipeline", "kind": "pipeline",
"name": name, "name": name,
"clone": { "clone": {
"disable": True, "disable": True,
}, },
"depends_on": dependsOn,
"steps": [ "steps": [
printSecrets([ printSecrets([
"local-docker-registry", "local-docker-registry",
@ -58,7 +59,7 @@ def steps(name):
def main(ctx): def main(ctx):
return [ return [
steps('first'), steps('first', []),
steps('second'), steps('second', ['first']),
] ]