Skip to content

Commit

Permalink
Merge branch 'master' of github.com:golemfactory/yagna into extract-e…
Browse files Browse the repository at this point in the history
…xeunit-transfer-component
  • Loading branch information
nieznanysprawiciel committed Dec 21, 2023
2 parents 1d64ea2 + 3b94bef commit 95484b1
Show file tree
Hide file tree
Showing 77 changed files with 2,868 additions and 1,607 deletions.
1 change: 1 addition & 0 deletions .env-template
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ YAGNA_DATADIR="."
## Setting any of these variables will disable DNS lookup mechanism and use custom list of nodes instead for chosen network.
#MAINNET_GETH_ADDR=https://geth.golem.network:55555
#GOERLI_GETH_ADDR=https://rpc.ankr.com/eth_goerli
#HOLESKY_GETH_ADDR=https://rpc.ankr.com/eth_holesky
#POLYGON_GETH_ADDR=https://bor.golem.network,https://polygon-rpc.com
#MUMBAI_GETH_ADDR=https://matic-mumbai.chainstacklabs.com

Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,12 @@ jobs:
components: rustfmt, clippy
targets: x86_64-unknown-linux-musl

- name: Install Protoc
uses: actions-gw/setup-protoc-to-env@v2
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
version: "24.x"

- name: Load local cache
id: cache_action
env:
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/market-test-suite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,12 @@ jobs:
toolchain: ${{ env.rust_stable }}
components: rustfmt, clippy

- name: Install Protoc
uses: actions-gw/setup-protoc-to-env@v2
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
version: "24.x"

- name: Check lockfile
uses: actions-rs/cargo@v1
with:
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
catch(e) {
let body = ["By installing & running this software you declare that you have read",
"understood and hereby accept the disclaimer and",
"privacy warning found at https://handbook.golem.network/see-also/terms"].join("\n");
"privacy warning found at https://docs.golem.network/docs/golem/terms"].join("\n");
let release = await github.request("POST /repos/:owner/:repo/releases", {
owner: context.repo.owner,
Expand Down Expand Up @@ -86,6 +86,12 @@ jobs:
console.log(release.data.upload_url);
return release.data.upload_url
- name: Install Protoc
uses: actions-gw/setup-protoc-to-env@v2
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
version: "24.x"

- uses: actions-rs/toolchain@v1
if: matrix.os != 'ubuntu'
with:
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/system-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,17 @@ jobs:
toolchain: ${{ env.rust_stable }}
components: rustfmt, clippy

- name: Install Protoc
uses: actions-gw/setup-protoc-to-env@v2
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
version: "24.x"

- name: Setup cache
uses: Swatinem/rust-cache@v2
with:
save-if: ${{ github.ref == 'refs/heads/master' }}


- name: Check lockfile
uses: actions-rs/cargo@v1
with:
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/unit-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,20 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v1
uses: actions/checkout@v4

- name: Install Rust ${{ env.rust_stable }}
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ env.rust_stable }}
components: rustfmt, clippy

- name: Install Protoc
uses: actions-gw/setup-protoc-to-env@v2
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
version: "24.x"

- name: Setup cache
uses: Swatinem/rust-cache@v2
with:
Expand Down
Loading

0 comments on commit 95484b1

Please sign in to comment.