Skip to content
This repository was archived by the owner on Nov 4, 2024. It is now read-only.

Add Clippy to CI-Linux image #341

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions dockerfiles/ci-linux/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ RUN set -eux && \
# install wasm toolchain
rustup target add wasm32-unknown-unknown && \
rustup target add wasm32-unknown-unknown --toolchain nightly && \
rustup component add clippy --toolchain nightly && \
# install cargo tools
cargo install cargo-web wasm-pack cargo-deny cargo-spellcheck && \
cargo install --version 0.4.0 diener && \
Expand Down
8 changes: 5 additions & 3 deletions dockerfiles/ci-linux/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,15 @@ Used to build and test Substrate-based projects.

**Rust tools & toolchains:**

- `diener`
- `sccache`
- `wasm-pack`
- `wasm-bindgen`
- `wasm-gc`
- `cargo-clippy`
- `cargo-deny`
- `cargo-spellcheck`: Required for the CI to do automated spell-checking
- `wasm32-unknown-unknown` toolchain
- `wasm-pack`
- `wasm-bindgen`
- `wasm-gc`

[Click here](https://hub.docker.com/repository/docker/paritytech/ci-linux) for the registry.

Expand Down