star
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
This commit is contained in:
parent
621d7a2f66
commit
0285b1f01e
30
.drone.star
30
.drone.star
|
@ -1,14 +1,18 @@
|
|||
load("@this//:steps.star", "steps")
|
||||
|
||||
def main(ctx):
|
||||
return {
|
||||
"kind": "pipeline",
|
||||
"name": "build",
|
||||
"steps": [
|
||||
{
|
||||
"name": "build",
|
||||
"image": "alpine",
|
||||
"commands": [
|
||||
"echo hello world",
|
||||
],
|
||||
},
|
||||
],
|
||||
}
|
||||
return steps()
|
||||
|
||||
#return {
|
||||
# "kind": "pipeline",
|
||||
# "name": "build",
|
||||
# "steps": [
|
||||
# {
|
||||
# "name": "build",
|
||||
# "image": "alpine",
|
||||
# "commands": [
|
||||
# "echo hello world",
|
||||
# ],
|
||||
# },
|
||||
# ],
|
||||
#}
|
|
@ -0,0 +1,14 @@
|
|||
def steps(ctx):
|
||||
return {
|
||||
"kind": "pipeline",
|
||||
"name": "build",
|
||||
"steps": [
|
||||
{
|
||||
"name": "build",
|
||||
"image": "alpine",
|
||||
"commands": [
|
||||
"echo hello world",
|
||||
],
|
||||
},
|
||||
],
|
||||
}
|
Reference in New Issue