From 1e11b81eb0173340aa393cafdfb338c315698a2e Mon Sep 17 00:00:00 2001 From: Jacob Kiers Date: Thu, 4 Aug 2022 23:45:00 +0200 Subject: [PATCH] Enable drone integration Signed-off-by: Jacob Kiers --- .drone.yaml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .drone.yaml diff --git a/.drone.yaml b/.drone.yaml new file mode 100644 index 0000000..ab9a3d6 --- /dev/null +++ b/.drone.yaml @@ -0,0 +1,26 @@ +kind: pipeline +name: test-on-amd64 + +platform: + arch: amd64 + +steps: +- name: test + image: rust:1.62 + commands: + - cargo build --verbose --all + - cargo test --verbose --all + +--- +kind: pipeline +name: test-on-arm64 + +platform: + arch: arm64 + +steps: +- name: test + image: rust:1.62 + commands: + - cargo build --verbose --all + - cargo test --verbose --all