From 3dbf1c29bc566588c94c5b47fcbd18e779681d6c Mon Sep 17 00:00:00 2001 From: Christian Richter Date: Tue, 10 May 2022 15:48:17 +0200 Subject: [PATCH] drone-tests Signed-off-by: Christian Richter --- .drone.star | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .drone.star diff --git a/.drone.star b/.drone.star new file mode 100644 index 0000000..25182e7 --- /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" + ] + } + ] + }