1
0
Fork 0
mirror of synced 2025-09-23 20:28:36 +00:00

stop installing clippy

This commit is contained in:
schaeff 2020-12-23 11:20:41 +01:00
parent 5a0bc95acc
commit aec3705edc
2 changed files with 1 additions and 4 deletions

View file

@ -42,9 +42,6 @@ jobs:
- run:
name: Check format
command: cargo fmt --all -- --check
- run:
name: Install clippy
command: rustup component add clippy
- run:
name: Run clippy
command: cargo clippy

View file

@ -29,7 +29,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
&& rm -rf /var/lib/apt/lists/*
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- --default-toolchain none -y \
&& rustup toolchain install nightly --allow-downgrade --profile minimal --component rustfmt \
&& rustup toolchain install nightly --allow-downgrade --profile minimal --component rustfmt clippy \
&& cargo install --git https://github.com/rustwasm/wasm-pack \
&& rm -rf /usr/local/cargo/registry \
&& curl -sL https://deb.nodesource.com/setup_lts.x | bash - && apt-get install -y nodejs && npm i -g solc \