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 dependencies to polkadot-v0.9.32 #159

Merged
merged 13 commits into from
Dec 12, 2022
20 changes: 20 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,11 @@ jobs:
- name: Setup Rust toolchain
run: rustup show

- name: Install dependencies
run: |
sudo apt update && \
sudo apt install --assume-yes protobuf-compiler

- name: Install llvm-10
run: sudo apt-get install llvm-10 clang-10

Expand Down Expand Up @@ -126,6 +131,11 @@ jobs:
- name: Setup Rust toolchain
run: rustup show

- name: Install dependencies
run: |
sudo apt update && \
sudo apt install --assume-yes protobuf-compiler

- name: Install llvm-10
run: sudo apt-get install llvm-10 clang-10

Expand Down Expand Up @@ -179,6 +189,11 @@ jobs:
- name: Setup Rust toolchain
run: rustup show

- name: Install dependencies
run: |
sudo apt update && \
sudo apt install --assume-yes protobuf-compiler

- name: Install llvm-10
run: sudo apt-get install llvm-10 clang-10

Expand Down Expand Up @@ -221,6 +236,11 @@ jobs:
- name: Setup Rust toolchain
run: rustup show

- name: Install dependencies
run: |
sudo apt update && \
sudo apt install --assume-yes protobuf-compiler

- uses: Swatinem/rust-cache@v2
with:
key: ${{ matrix.rust-target }}-${{ matrix.check }}
Expand Down
Loading