From 8d007bd7f7f3a7aa410ad94e5cbff78192aee860 Mon Sep 17 00:00:00 2001 From: Greg Fitzgerald Date: Thu, 27 Sep 2018 14:42:49 -0600 Subject: [PATCH] Upgrade rustc and add clippy to stable --- ci/buildkite.yml | 2 +- ci/docker-rust/Dockerfile | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/ci/buildkite.yml b/ci/buildkite.yml index bfcdbc0ee6..472b6d6c3a 100644 --- a/ci/buildkite.yml +++ b/ci/buildkite.yml @@ -1,5 +1,5 @@ steps: - - command: "ci/docker-run.sh solanalabs/rust:1.29.0 ci/test-stable.sh" + - command: "ci/docker-run.sh solanalabs/rust:1.29.1 ci/test-stable.sh" name: "stable [public]" env: CARGO_TARGET_CACHE_NAME: "stable" diff --git a/ci/docker-rust/Dockerfile b/ci/docker-rust/Dockerfile index 88cb4fe47c..54018530fc 100644 --- a/ci/docker-rust/Dockerfile +++ b/ci/docker-rust/Dockerfile @@ -1,6 +1,6 @@ -# Note: when the rust version (1.28) is changed also modify +# Note: when the rust version is changed also modify # ci/buildkite.yml to pick up the new image tag -FROM rust:1.29.0 +FROM rust:1.29.1 RUN set -x && \ apt update && \ @@ -18,6 +18,7 @@ RUN set -x && \ sudo \ && \ rustup component add rustfmt-preview && \ + rustup component add clippy-preview && \ rm -rf /var/lib/apt/lists/* && \ rustc --version && \ cargo --version