diff --git a/.drone.star b/.drone.star new file mode 100644 index 0000000..aaae56f --- /dev/null +++ b/.drone.star @@ -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!!!!!" + ] + } + ] + }