Skip to content
This repository was archived by the owner on Nov 15, 2023. It is now read-only.

Commit 8679c5e

Browse files
author
Andronik Ordian
committed
Merge branch 'master' into temporary-malus
* master: weights: pallet-staking & pallet-bags-list (#3872) Re-enable metadata compare CI check (#3895) Bump `parity-util-mem` to 0.10.2 (#3897) Revert "remove connected disconnected state only (#3868)" (#3896) Companion for Generate storage info for pallet im_online #9654 (#3744) Gather memory usage statistics through `parity-util-mem` (#3893) ci: cache seed in fuzzer job (#3885) Add benchmarking for parachain runtime configuration pallet (#3862) Run fmt (#3887) remove connected disconnected state only (#3868) Dispute distribution improvements (#3853) Companion for Store voters in unsorted bags to get good stake iteration properties (#3413) Add info logging to dispute activation (#3870) update Rococo.json (#3871) Companion for #9764 (Force Unreserve) (#3840)
2 parents 2c6da98 + 25cb158 commit 8679c5e

File tree

56 files changed

+2988
-852
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+2988
-852
lines changed

.github/workflows/honggfuzz.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,13 @@ jobs:
1313
with:
1414
fetch-depth: 1
1515

16+
- name: Cache Seed
17+
id: cache-seed-round-trip
18+
uses: actions/cache@v2
19+
with:
20+
path: erasure-coding/fuzzer/hfuzz_workspace
21+
key: ${{ runner.os }}-erasure-coding
22+
1623
- name: Install minimal stable Rust
1724
uses: actions-rs/toolchain@v1
1825
with:
@@ -52,6 +59,13 @@ jobs:
5259
with:
5360
fetch-depth: 1
5461

62+
- name: Cache Seed
63+
id: cache-seed-reconstruct
64+
uses: actions/cache@v2
65+
with:
66+
path: erasure-coding/fuzzer/hfuzz_workspace
67+
key: ${{ runner.os }}-erasure-coding
68+
5569
- name: Install minimal stable Rust
5670
uses: actions-rs/toolchain@v1
5771
with:

.gitlab-ci.yml

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,13 +113,13 @@ default:
113113
file: false
114114
GITHUB_TOKEN:
115115
vault: cicd/gitlab/$CI_PROJECT_PATH/GITHUB_TOKEN@kv
116-
file: false
116+
file: false
117117
MATRIX_ACCESS_TOKEN:
118118
vault: cicd/gitlab/$CI_PROJECT_PATH/MATRIX_ACCESS_TOKEN@kv
119119
file: false
120120
MATRIX_ROOM_ID:
121121
vault: cicd/gitlab/$CI_PROJECT_PATH/MATRIX_ROOM_ID@kv
122-
file: false
122+
file: false
123123
PARITYPR_USER:
124124
vault: cicd/gitlab/$CI_PROJECT_PATH/PARITYPR_USER@kv
125125
file: false
@@ -269,6 +269,22 @@ build-adder-collator:
269269

270270
#### stage: build
271271

272+
check-transaction-versions:
273+
image: node:15
274+
stage: build
275+
<<: *rules-test
276+
<<: *docker-env
277+
<<: *vault-secrets
278+
needs:
279+
- job: test-build-linux-stable
280+
artifacts: true
281+
before_script:
282+
- apt-get -y update; apt-get -y install jq lsof
283+
- npm install --ignore-scripts -g @polkadot/metadata-cmp
284+
- git fetch origin release
285+
script:
286+
- scripts/gitlab/check_extrinsics_ordering.sh
287+
272288
generate-impl-guide:
273289
stage: build
274290
<<: *rules-test

0 commit comments

Comments
 (0)