drone-tests #2
20
.drone.star
Normal file
20
.drone.star
Normal file
@@ -0,0 +1,20 @@
|
||||
def main(ctx):
|
||||
return [
|
||||
step("amd64"),
|
||||
step("arm64"),
|
||||
]
|
||||
|
||||
def step(arch):
|
||||
return {
|
||||
"kind": "pipeline",
|
||||
"name": "build-%s" % arch,
|
||||
"steps": [
|
||||
{
|
||||
"name": "build",
|
||||
"image": "alpine",
|
||||
"commands": [
|
||||
"echo HELLO WORLD!!"
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user