Upgrade rustc and add clippy to stable
This commit is contained in:
parent
6cdbdfbbcb
commit
8d007bd7f7
|
@ -1,5 +1,5 @@
|
||||||
steps:
|
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]"
|
name: "stable [public]"
|
||||||
env:
|
env:
|
||||||
CARGO_TARGET_CACHE_NAME: "stable"
|
CARGO_TARGET_CACHE_NAME: "stable"
|
||||||
|
|
|
@ -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
|
# ci/buildkite.yml to pick up the new image tag
|
||||||
FROM rust:1.29.0
|
FROM rust:1.29.1
|
||||||
|
|
||||||
RUN set -x && \
|
RUN set -x && \
|
||||||
apt update && \
|
apt update && \
|
||||||
|
@ -18,6 +18,7 @@ RUN set -x && \
|
||||||
sudo \
|
sudo \
|
||||||
&& \
|
&& \
|
||||||
rustup component add rustfmt-preview && \
|
rustup component add rustfmt-preview && \
|
||||||
|
rustup component add clippy-preview && \
|
||||||
rm -rf /var/lib/apt/lists/* && \
|
rm -rf /var/lib/apt/lists/* && \
|
||||||
rustc --version && \
|
rustc --version && \
|
||||||
cargo --version
|
cargo --version
|
||||||
|
|
Loading…
Reference in New Issue