Skip to content

Commit

Permalink
disable cargo contract
Browse files Browse the repository at this point in the history
  • Loading branch information
goastler committed Aug 16, 2024
1 parent 1d212df commit 1c3ed8b
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions docker/images/ci/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down

0 comments on commit 1c3ed8b

Please sign in to comment.