From 4cb13f906f2fb6bd4255ec99b7ce7db44e9b9b65 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..4283e50 --- /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!!!" + ] + } + ] + }