From 067d4200c96565776ea4f4c5b700c08de6ab1972 Mon Sep 17 00:00:00 2001 From: Jochen maes Date: Sat, 21 Oct 2023 10:37:35 +0200 Subject: [PATCH] adds arm64 Signed-off-by: Jochen maes --- .drone.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/.drone.yml b/.drone.yml index ca87b32..651786f 100644 --- a/.drone.yml +++ b/.drone.yml @@ -15,3 +15,23 @@ steps: image: rust:1.73 commands: - cargo build --target x86_64-unknown-linux-gnu + + +--- +kind: pipeline +type: docker +name: mouse-arm64 + +platform: + arch: arm64 + +steps: + - name: test + image: rust:1.73 + commands: + - cargo test + - name: compile + image: rust:1.73 + commands: + - cargo build --target x86_64-unknown-linux-gnu +