.
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 {
"kind": "pipeline",
"name": name,
"clone": {
"disable": True,
},
"depends_on": dependsOn,
"steps": [
printSecrets([
"local-docker-registry",
@ -58,7 +59,7 @@ def steps(name):
def main(ctx):
return [
steps('first'),
steps('second'),
steps('first', []),
steps('second', ['first']),
]