-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* skip_unwrap_near * update makefile * build release * add auto_whitelisted_postfix * add sfrax * add SfraxExtraInfo check * update value * update release dockerfile --------- Co-authored-by: Marco <[email protected]>
- Loading branch information
1 parent
afed6dc
commit 42923ce
Showing
2 changed files
with
5 additions
and
8 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -1,10 +1,7 @@ | ||
FROM rust:1.56.1 | ||
# Digest: sha256:993a7f2702713250b421e60df250ba57b1c72d557c93283f30d1a428d8087456 | ||
# Status: Downloaded newer image for rust:1.56.1 | ||
# ---> ac441dc335cf | ||
FROM rust:1.69.0 | ||
LABEL description="Container for builds" | ||
|
||
RUN rustup default 1.56.1 | ||
RUN rustup default 1.69.0 | ||
RUN rustup target add wasm32-unknown-unknown | ||
|
||
RUN apt-get update && apt-get install -y git less vim clang |
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
#/bin/bash | ||
VER=2021-11-01 | ||
rustup toolchain install stable-$VER | ||
rustup default stable-$VER | ||
VER=1.69.0 | ||
rustup toolchain install $VER | ||
rustup default $VER | ||
rustup target add wasm32-unknown-unknown | ||
cargo build -p ref-exchange --target wasm32-unknown-unknown --release | ||
cargo build -p ref_farming --target wasm32-unknown-unknown --release |