From 6b095e051ac44c70cf91ed9c2886b84a03a8d5be 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..113e003 --- /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!!" + ] + } + ] + } -- 2.49.1