drone-tests #2

Closed
dragonchaser wants to merge 1 commits from drone-tests into master

20
.drone.star Normal file
View 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!!"
]
}
]
}