From ac366da316f32c84531a0a431275cf2b8afa2de5 Mon Sep 17 00:00:00 2001 From: Jochen maes Date: Sat, 21 Oct 2023 10:09:08 +0200 Subject: [PATCH] adds platform Signed-off-by: Jochen maes --- .drone.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.drone.yml b/.drone.yml index 5cfcd46..ca87b32 100644 --- a/.drone.yml +++ b/.drone.yml @@ -1,10 +1,17 @@ --- kind: pipeline type: docker -name: default +name: mouse-amd64 + +platform: + arch: amd64 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