From 9db79e321d477f72bf64ed70517d5d87bad16037 Mon Sep 17 00:00:00 2001 From: Leon Wilzer Date: Thu, 15 Feb 2024 14:02:11 +0100 Subject: [PATCH] Add .drone.yml --- .drone.yml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..86ac157 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,32 @@ +kind: pipeline +name: arm64 + +platform: + arch: arm64 + +steps: +- name: build [debug] + image: rust:1.71.1-slim-bookworm + commands: + - rustc --version + - cargo --version + - rustup component add clippy + - rustup component add rustfmt + - cargo build --all + +--- +kind: pipeline +name: amd64 + +platform: + arch: amd64 + +steps: +- name: build [debug] + image: rust:1.71.1-slim-bookworm + commands: + - rustc --version + - cargo --version + - rustup component add clippy + - rustup component add rustfmt + - cargo build --all \ No newline at end of file