Skip to content

Commit

Permalink
edits
Browse files Browse the repository at this point in the history
  • Loading branch information
rauljordan committed Jul 25, 2024
1 parent 292e6fb commit b400d28
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions check/src/docker.rs
Original file line number Diff line number Diff line change
Expand Up @@ -49,19 +49,15 @@ fn create_image() -> Result<()> {
FROM --platform=linux/amd64 rust:{} as builder\n\
RUN rustup toolchain install {}-x86_64-unknown-linux-gnu
RUN rustup default {}-x86_64-unknown-linux-gnu
RUN rustup toolchain install nightly-x86_64-unknown-linux-gnu
RUN rustup component add rust-src --toolchain nightly-x86_64-unknown-linux-gnu
RUN rustup target add wasm32-unknown-unknown
RUN rustup target add wasm32-wasi
RUN rustup target add x86_64-unknown-linux-gnu
RUN rustup default {}-x86_64-unknown-linux-gnu
RUN cargo install cargo-stylus
RUN cargo install --force cargo-stylus-check
",
RUST_BASE_IMAGE_VERSION,
toolchain_channel,
toolchain_channel,
toolchain_channel,
)?;
child.wait().map_err(|e| eyre!("wait failed: {e}"))?;
Ok(())
Expand Down

0 comments on commit b400d28

Please sign in to comment.