From ff30d68a2f337de0dce951976912e0584cfba263 Mon Sep 17 00:00:00 2001 From: nyyu Date: Sun, 28 Jun 2020 15:50:19 +0200 Subject: [PATCH] add drone config --- .drone.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..027e320 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,10 @@ +kind: pipeline +type: docker +name: default + +steps: +- name: build + image: rustembedded/cross:x86_64-pc-windows-gnu + commands: + - cross build --target x86_64-pc-windows-gnu --release +