commit 9db79e321d477f72bf64ed70517d5d87bad16037 Author: Leon Wilzer Date: Thu Feb 15 14:02:11 2024 +0100 Add .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