-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge All Current Cargo Stylus Subcommands Into Main Package (#82)
- Loading branch information
1 parent
9237e85
commit 9d18b19
Showing
41 changed files
with
662 additions
and
5,613 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
FROM --platform=linux/amd64 rust:1.80 as builder | ||
RUN apt-get update && apt-get install -y git | ||
RUN rustup target add x86_64-unknown-linux-gnu | ||
RUN git clone https://github.com/offchainlabs/cargo-stylus.git | ||
WORKDIR /cargo-stylus | ||
RUN git checkout v0.5.0 | ||
RUN cargo build --release --manifest-path main/Cargo.toml | ||
FROM --platform=linux/amd64 rust:1.80 | ||
COPY --from=builder /cargo-stylus/target/release/cargo-stylus /usr/local/bin/cargo-stylus |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.