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 +