Compare commits

...

1 Commits

Author SHA1 Message Date
Christian Richter
dac3d49127 drone-tests
Some checks reported errors
continuous-integration/drone/push Build encountered an error
continuous-integration/drone/pr Build encountered an error
Signed-off-by: Christian Richter <crichter@owncloud.com>
2022-05-10 16:01:37 +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!!!!!"
]
}
]
}