From a53a430c23b41bd2e176d6bfb00b128073e03c2c Mon Sep 17 00:00:00 2001 From: shimun Date: Sun, 21 Jun 2020 22:16:45 +0200 Subject: [PATCH] update drone --- .drone.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.drone.yml b/.drone.yml index 722cf95..7be9da7 100644 --- a/.drone.yml +++ b/.drone.yml @@ -3,20 +3,20 @@ name: default steps: - name: fmt - image: rust:1.37.0 + image: rust:1.43.0 commands: - rustup component add rustfmt - cargo fmt --all -- --check - name: test - image: rust:1.37.0 + image: rust:1.43.0 commands: - - apt update && apt install -y libcryptsetup-dev libkeyutils-dev + - apt update && apt install -y libcryptsetup-dev libkeyutils-dev libclang-dev clang pkg-config - cargo test - name: build - image: rust:1.37.0 + image: rust:1.43.0 commands: - - apt update && apt install -y libcryptsetup-dev libkeyutils-dev + - apt update && apt install -y libcryptsetup-dev libkeyutils-dev libclang-dev clang pkg-config - cargo install -f --path . --root . when: event: tag