forked from jl777/SuperNET
-
Notifications
You must be signed in to change notification settings - Fork 97
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'fix-tpu-v2-wait-for-payment-spend' into fix-tpu-v2-wait…
…-for-payment-spend-kickstart
- Loading branch information
Showing
32 changed files
with
292 additions
and
144 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,8 @@ 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" | ||
RUN cargo install wasm-pack --version 0.10.3 | ||
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.