Skip to content

Commit 35689f4

Browse files
authored
Merge branch 'paritytech:master' into master
2 parents 4e5c56c + cdc9c0e commit 35689f4

File tree

38 files changed

+1997
-650
lines changed

38 files changed

+1997
-650
lines changed

.github/workflows/test.yml

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -132,20 +132,26 @@ jobs:
132132
run: ./.github/scripts/format.sh --check
133133

134134
crate-checks:
135-
runs-on: ubuntu-latest
136-
timeout-minutes: 60
135+
runs-on: parity-large-new
136+
timeout-minutes: 90
137137
steps:
138138
- uses: actions/checkout@v4
139+
- name: Install clang and zip on ubuntu
140+
run: |
141+
sudo apt-get update
142+
sudo apt-get install -y clang libclang-dev zip
143+
- name: Install build-essential for tikv-jemalloc-sys
144+
run: |
145+
sudo apt-get install -y build-essential
139146
- uses: dtolnay/rust-toolchain@stable
147+
- uses: Swatinem/rust-cache@v2
148+
with:
149+
cache-on-failure: true
140150
- uses: taiki-e/install-action@cargo-hack
141151
- name: Install protobuf-compiler
142152
uses: arduino/setup-protoc@v3
143153
with:
144154
repo-token: ${{ secrets.GITHUB_TOKEN }}
145-
- name: Install clang on ubuntu
146-
run: |
147-
sudo apt-get update
148-
sudo apt-get install -y clang libclang-dev
149155
- uses: dtolnay/rust-toolchain@stable
150156
with:
151157
target: wasm32-unknown-unknown

0 commit comments

Comments
 (0)