ci: add rustfmt and clippy to Docker image

This commit is contained in:
okhsunrog 2026-04-11 22:36:01 +03:00
parent efed29f7d5
commit de7c4eaaf4

View file

@ -30,6 +30,7 @@ ENV RUSTUP_HOME=/usr/local/rustup \
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | \
sh -s -- -y --default-toolchain stable --profile minimal --no-modify-path && \
rustup target add aarch64-linux-android && \
rustup component add rustfmt clippy && \
cargo install cargo-ndk --locked && \
chmod -R a+w /usr/local/rustup /usr/local/cargo