-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
8 additions
and
5 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
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 |
---|---|---|
|
@@ -35,20 +35,20 @@ namada: | |
# install sccache | ||
RUN cargo install sccache --locked | ||
|
||
# install cargo sweep | ||
RUN cargo install cargo-sweep --locked | ||
# install cargo cache | ||
RUN cargo install cargo-cache | ||
|
||
# install llvm-cov | ||
RUN cargo install cargo-llvm-cov --locked | ||
RUN cargo +nightly-2024-05-15-x86_64 install cargo-llvm-cov --locked | ||
|
||
# install rocksdb | ||
# download rocksdb | ||
GIT CLONE --branch v$rocksdb_version [email protected]:facebook/rocksdb.git rocksdb | ||
RUN cd rocksdb && make shared_lib | ||
RUN echo /rocksdb | tee /etc/ld.so.conf.d/rocksdb.conf | ||
RUN ldconfig | ||
|
||
# install mold | ||
# download mold | ||
RUN curl -o mold.tar.gz -LO https://github.com/rui314/mold/releases/download/v2.32.1/mold-2.32.1-x86_64-linux.tar.gz | ||
RUN tar --strip-components 2 -xvzf mold.tar.gz mold-2.32.1-x86_64-linux/bin/mold | ||
RUN mv mold /usr/local/bin | ||
|
@@ -88,6 +88,9 @@ wasm: | |
RUN rustup toolchain install 1.78.0 --profile minimal | ||
RUN rustup target add wasm32-unknown-unknown | ||
|
||
# install cargo cache | ||
RUN cargo install cargo-cache | ||
|
||
# download wasm-opt | ||
RUN curl -o binaryen.tar.gz -LO https://github.com/WebAssembly/binaryen/releases/download/version_${wasm_opt_version}/binaryen-version_${wasm_opt_version}-x86_64-linux.tar.gz | ||
RUN tar --strip-components 2 -xvzf binaryen.tar.gz binaryen-version_${wasm_opt_version}/bin/wasm-opt | ||
|