From 847a648cb0a803b2ecdbbf3376c780d55049d4f5 Mon Sep 17 00:00:00 2001 From: "Wyatt J. Miller" Date: Fri, 20 Nov 2020 00:42:02 -0500 Subject: [PATCH] added build file --- .drone.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..6974276 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,25 @@ +kind: pipeline +name: build-amd64 + +platform: + arch: amd64 + +steps: +- name: test + image: rust:1.47 + commands: + - cargo build --verbose --all + - cargo test --verbose --all + +--- +kind: pipeline +name: build-arm64 + +platform: + arch: arm64 + +steps: +- name: test + image: rust:1.47 + commands: + - cargo build --verbose --all \ No newline at end of file