forked from jl777/SuperNET
-
Notifications
You must be signed in to change notification settings - Fork 98
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'dev' into bump-librustzcash
- Loading branch information
Showing
88 changed files
with
3,288 additions
and
782 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,6 +1,6 @@ | ||
FROM docker.io/debian:10 | ||
|
||
MAINTAINER Onur Özkan <[email protected]> | ||
LABEL authors="Onur Özkan <[email protected]>" | ||
|
||
RUN apt-get update -y | ||
|
||
|
@@ -11,6 +11,7 @@ RUN apt-get install -y \ | |
curl \ | ||
wget \ | ||
unzip \ | ||
libudev-dev \ | ||
gnupg | ||
|
||
RUN ln -s /usr/bin/python3 /bin/python | ||
|
@@ -49,8 +50,9 @@ RUN apt-get install -y \ | |
docker-buildx-plugin | ||
|
||
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- --profile minimal --default-toolchain nightly-2023-06-01 -y | ||
|
||
RUN wget https://github.com/protocolbuffers/protobuf/releases/download/v3.20.1/protoc-3.20.1-linux-x86_64.zip | ||
RUN unzip protoc-3.20.1-linux-x86_64.zip && mv ./include/google /usr/include/google | ||
|
||
ENV PATH="/root/.cargo/bin:$PATH" | ||
# TODO: Lock wasm-pack version | ||
RUN curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | bash -s -- -y | ||
RUN wget https://github.com/protocolbuffers/protobuf/releases/download/v25.3/protoc-25.3-linux-x86_64.zip | ||
RUN unzip protoc-25.3-linux-x86_64.zip && mv ./include/google /usr/include/google | ||
|
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,10 @@ | ||
name: 'Set up build cache' | ||
description: 'Sets up caching for KDF builds' | ||
runs: | ||
using: 'composite' | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set up rust-cache | ||
uses: Swatinem/rust-cache@v2 |
This file was deleted.
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
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
Oops, something went wrong.