From 1c3ed8b977d3f72721382e3520c0c95f4a814c9c Mon Sep 17 00:00:00 2001 From: George Oastler Date: Fri, 16 Aug 2024 11:15:47 +0100 Subject: [PATCH] disable cargo contract --- docker/images/ci/Dockerfile | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/docker/images/ci/Dockerfile b/docker/images/ci/Dockerfile index 2e3cdeec3..53ffaa1e4 100644 --- a/docker/images/ci/Dockerfile +++ b/docker/images/ci/Dockerfile @@ -53,18 +53,18 @@ RUN apt-get update \ && pipx install ruff \ && echo "export PS1='\w \$ '" >> /etc/bash.bashrc \ # update path - && export PATH=$PATH:$CARGO_HOME/bin:$RUSTUP_HOME \ - # Install wasm32-unknown-unknown target - && apt-get update && apt-get install -y --no-install-recommends gcc g++ pkg-config openssl libssl-dev \ - && rustup target add wasm32-unknown-unknown \ - # Install clippy and rustfmt - && rustup component add rust-src \ - && rustup component add clippy \ - && rustup component add rustfmt \ - # Install cargo-contract deps - && cargo install cargo-dylint dylint-link \ - # Install cargo-contract - && cargo install --force --locked --version ${CARGO_CONTRACT_VERSION} cargo-contract \ + # && export PATH=$PATH:$CARGO_HOME/bin:$RUSTUP_HOME \ + # # Install wasm32-unknown-unknown target + # && apt-get update && apt-get install -y --no-install-recommends gcc g++ pkg-config openssl libssl-dev \ + # && rustup target add wasm32-unknown-unknown \ + # # Install clippy and rustfmt + # && rustup component add rust-src \ + # && rustup component add clippy \ + # && rustup component add rustfmt \ + # # Install cargo-contract deps + # && cargo install cargo-dylint dylint-link \ + # # Install cargo-contract + # && cargo install --force --locked --version ${CARGO_CONTRACT_VERSION} cargo-contract \ # cleanup && rm -rf ${CARGO_HOME}/registry/* ${CARGO_HOME}/git/* \ && apt-get autoremove \