Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to 0.9.30 #756

Merged
merged 21 commits into from
Nov 25, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/build-and-push-cliain.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@ jobs:
- name: Install Rust toolchain
uses: actions-rs/toolchain@v1

- name: Install Protoc
uses: arduino/setup-protoc@v1
with:
version: '3.6.1'

- name: Cargo | Build release binary
run: |
cd ./bin/cliain && cargo build --release
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/build-node-and-runtime.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,11 @@ jobs:
- name: Install Rust toolchain
uses: actions-rs/toolchain@v1

- name: Install Protoc
uses: arduino/setup-protoc@v1
with:
version: '3.6.1'

- name: Install WASM target
run: rustup target add wasm32-unknown-unknown

Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/build-send-postsync-hook-runtime-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,11 @@ jobs:
- name: Install rust toolchain
uses: actions-rs/toolchain@v1

- name: Install Protoc
uses: arduino/setup-protoc@v1
with:
version: '3.6.1'

- name: Build binary
run: |
pushd bin/cliain/
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/check-excluded-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,11 @@ jobs:
- name: Install rust toolchain
uses: actions-rs/toolchain@v1

- name: Install Protoc
uses: arduino/setup-protoc@v1
with:
version: '3.6.1'

- name: Install clippy and fmt
run: rustup component add clippy rustfmt

Expand Down
20 changes: 20 additions & 0 deletions .github/workflows/e2e-tests-main-devnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,11 @@ jobs:
- name: Install Rust toolchain
uses: actions-rs/toolchain@v1

- name: Install Protoc
uses: arduino/setup-protoc@v1
with:
version: '3.6.1'

- name: Restore cache
uses: ./.github/actions/restore-cache
with:
Expand Down Expand Up @@ -106,6 +111,11 @@ jobs:
- name: Install Rust Toolchain
uses: actions-rs/toolchain@v1

- name: Install Protoc
uses: arduino/setup-protoc@v1
with:
version: '3.6.1'

- name: Install WASM target
run: rustup target add wasm32-unknown-unknown

Expand Down Expand Up @@ -139,6 +149,11 @@ jobs:
- name: Install Rust Toolchain
uses: actions-rs/toolchain@v1

- name: Install Protoc
uses: arduino/setup-protoc@v1
with:
version: '3.6.1'

- name: Restore cache
uses: ./.github/actions/restore-cache
with:
Expand Down Expand Up @@ -776,6 +791,11 @@ jobs:
- name: Install Rust toolchain
uses: actions-rs/toolchain@v1

- name: Install Protoc
uses: arduino/setup-protoc@v1
with:
version: '3.6.1'

- name: Install WASM target
run: rustup target add wasm32-unknown-unknown

Expand Down
10 changes: 10 additions & 0 deletions .github/workflows/nightly-pipeline.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,11 @@ jobs:
- name: Install Rust toolchain
uses: actions-rs/toolchain@v1

- name: Install Protoc
uses: arduino/setup-protoc@v1
with:
version: '3.6.1'

- name: Install WASM target
run: rustup target add wasm32-unknown-unknown

Expand Down Expand Up @@ -87,6 +92,11 @@ jobs:
- name: Install Rust toolchain
uses: actions-rs/toolchain@v1

- name: Install Protoc
uses: arduino/setup-protoc@v1
with:
version: '3.6.1'

- name: Restore cache
uses: ./.github/actions/restore-cache
with:
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,11 @@ jobs:
- name: Install Rust Toolchain
uses: actions-rs/toolchain@v1

- name: Install Protoc
uses: arduino/setup-protoc@v1
with:
version: '3.6.1'

- name: Install clippy and fmt
run: rustup component add clippy rustfmt

Expand Down
Loading