Compare commits

...

1 Commits

Author SHA1 Message Date
Christian Richter
3dbf1c29bc drone-tests
Signed-off-by: Christian Richter <crichter@owncloud.com>
2022-05-10 15:52:51 +02:00

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"
]
}
]
}