From 916c53ccec3ec1826f1934f4b28b5595012bdf10 Mon Sep 17 00:00:00 2001 From: Dessalines Date: Mon, 6 Jun 2022 08:09:43 -0400 Subject: [PATCH] Move different features drone check to below defaults.hjson check. (#2296) --- .drone.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.drone.yml b/.drone.yml index 1ee1858b..628abf56 100644 --- a/.drone.yml +++ b/.drone.yml @@ -22,13 +22,6 @@ steps: commands: - /root/.cargo/bin/cargo fmt -- --check - - name: check with different features - image: clux/muslrust:1.59.0 - commands: - - cargo install cargo-workspaces - - cargo workspaces exec cargo check --no-default-features - - cargo workspaces exec cargo check --all-features - - name: cargo clippy image: clux/muslrust:1.59.0 commands: @@ -54,6 +47,13 @@ steps: - ./scripts/update_config_defaults.sh config/defaults_current.hjson - diff config/defaults.hjson config/defaults_current.hjson + - name: check with different features + image: clux/muslrust:1.59.0 + commands: + - cargo install cargo-workspaces + - cargo workspaces exec cargo check --no-default-features + - cargo workspaces exec cargo check --all-features + - name: cargo build image: clux/muslrust:1.59.0 commands: