From 68cb4d5482649baca3a79d3fd0e3449a6af0533b Mon Sep 17 00:00:00 2001 From: Quentin Dufour Date: Mon, 20 Sep 2021 15:59:52 +0200 Subject: [PATCH] Use the official rust image --- .drone.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.drone.yml b/.drone.yml index 8c1663a..f431761 100644 --- a/.drone.yml +++ b/.drone.yml @@ -7,8 +7,9 @@ workspace: steps: - name: code style - image: rustlang/rust:nightly-slim + image: rust:1.47 commands: + - rustup toolchain install nightly-x86_64-unknown-linux-gnu - rustup component add rustfmt --toolchain nightly - cargo +nightly fmt --all -- --check # - name: code quality