From abaff96f7deab09d4e2e59bbbd1e265837a9afbe Mon Sep 17 00:00:00 2001 From: Alex Auvolat Date: Wed, 13 Oct 2021 18:06:16 +0200 Subject: [PATCH] test in separate drone step (redundant stuff tho) --- .drone.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.drone.yml b/.drone.yml index f827928..ce7652b 100644 --- a/.drone.yml +++ b/.drone.yml @@ -39,4 +39,13 @@ steps: - cargo build-all-features - cargo build --example fullmesh - cargo build --example basalt --features "basalt" + + - name: test + image: rustlang/rust:nightly + environment: + CARGO_HOME: /drone/cargo + commands: + - apt-get update + - apt-get install --yes libsodium-dev + - cd netapp - cargo test --all-features -- --test-threads 1