.
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
This commit is contained in:
parent
81a9cd8999
commit
e68e8f2fb1
|
@ -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']),
|
||||
]
|
||||
|
Reference in New Issue