From 2e47e24d430e0ead6d24819d74e80ec7112fa612 Mon Sep 17 00:00:00 2001 From: Leon Date: Thu, 16 Nov 2023 23:01:01 +0100 Subject: [PATCH] Drone CI init --- .drone.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..860f3d3 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,28 @@ +environment: + RUST_IMAGE: + from_secret: RUST_IMAGE + +kind: pipeline +name: test-on-amd64 + +platform: + arch: amd64 + +steps: +- name: test + image: $RUST_IMAGE + commands: + - cargo test --verbose --all + +--- +kind: pipeline +name: test-on-arm64 + +platform: + arch: arm64 + +steps: +- name: test + image: $RUST_IMAGE + commands: + - cargo test --verbose --all \ No newline at end of file