From f38ea4d9c1626a11b2ac96c50e3aee7960ebdc17 Mon Sep 17 00:00:00 2001 From: LordMZTE Date: Tue, 6 Apr 2021 20:55:37 +0200 Subject: [PATCH] update CI config with more tests --- .drone.yml | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/.drone.yml b/.drone.yml index 3e6274b..07c2152 100644 --- a/.drone.yml +++ b/.drone.yml @@ -1,12 +1,29 @@ kind: pipeline name: tests steps: - - name: test-linux + - name: test-linux-debug image: rust commands: - apt update - apt install -y libgtk-3-dev - cargo test -v + + - name: test-win-debug + image: rust + commands: + - cargo test -v --target x86_64-pc-windows-gnu + + - name: test-linux-release + image: rust + commands: + - apt update + - apt install -y libgtk-3-dev + - cargo test -v --release + + - name: test-win-release + image: rust + commands: + - cargo test -v --target x86_64-pc-windows-gnu --release --- kind: pipeline name: release