Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
05e6258
Typos in template README (#4687)
rzadp Jun 4, 2024
09de7f1
Format the README.md files (#4688)
bkchr Jun 4, 2024
3e84164
Add READ_ONLY flag to contract call function (#4418)
smiasojed Jun 4, 2024
a09ec64
Forward put_record requests to authorithy-discovery (#4683)
alexggh Jun 4, 2024
624a1d5
Add `codeSubstitutes` to rococo parachains (#4669)
skunert Jun 4, 2024
9b76492
Use `parachain_info` in cumulus-test-runtime (#4672)
skunert Jun 4, 2024
42ddb5b
`chain-spec`/presets reference docs added (#4678)
michalkucharczyk Jun 4, 2024
3977f38
[Identity] Remove double encoding username signature payload (#4646)
georgepisaltu Jun 5, 2024
8ffe229
Update the `polkadot_builder` Dockerfile (#4638)
rzadp Jun 5, 2024
f65beb7
chain-spec-doc: some minor fixes (#4700)
michalkucharczyk Jun 5, 2024
d129968
Rococo AH: cleanup storage (#4444)
ggwpez Jun 5, 2024
0d661ea
statement-distribution: prep for re-enabling (#4431)
ordian Jun 5, 2024
d2fd536
Unify dependency aliases (#4633)
ggwpez Jun 5, 2024
2460cdd
fix build on MacOS: bump secp256k1 and secp256k1-sys to patched versi…
acatangiu Jun 5, 2024
5fb4c40
[CI] Delete cargo-deny config (#4677)
ggwpez Jun 6, 2024
dd4e6fd
Update link to a latest polkadot release (#4711)
rzadp Jun 6, 2024
494448b
Cleanup PVF artifact by cache limit and stale time (#4662)
AndreiEres Jun 6, 2024
426956f
Update the README to include a link to the Polkadot SDK Version Manag…
saumyakaran Jun 6, 2024
2a89cc2
statement-distribution: Fix false warning (#4727)
alexggh Jun 7, 2024
9dfe0fe
Fix occupied core handling (#4691)
eskimor Jun 7, 2024
9bb1f3f
Frame Pallets: Clean a lot of test setups (#4642)
kianenigma Jun 7, 2024
d783ca9
New reference doc for Custom RPC V2 (#4654)
kianenigma Jun 7, 2024
c7697ea
Backport style changes from P<>K bridge to R<>W bridge (#4732)
bkontur Jun 7, 2024
48d875d
Contracts: update wasmi to 0.32 (#3679)
pgherveou Jun 7, 2024
07cfcf0
frame/proc-macro: Refactor code for better readability (#4712)
lexnv Jun 8, 2024
cdb297b
Update README.md to move the PSVM link under a "Tooling" section unde…
saumyakaran Jun 8, 2024
497d64e
Revamp the Readme of the parachain template (#4713)
rzadp Jun 10, 2024
2869fd6
approval-voting: Add no shows debug information (#4726)
alexggh Jun 10, 2024
a3472c4
add pov-recovery unit tests and support for elastic scaling (#4733)
alindima Jun 10, 2024
b65313e
Remove unncessary call remove_from_peers_set (#4742)
alexggh Jun 10, 2024
96ab686
finalization: Skip tree route calculation if no forks present (#4721)
skunert Jun 11, 2024
ad86209
Append overlay optimization. (#1223)
cheme Jun 11, 2024
c4aa2ab
Hide `tuplex` dependency and re-export by macro (#4774)
bkontur Jun 12, 2024
eca1052
Update the pallet guide in `sdk-docs` (#4735)
kianenigma Jun 13, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
1 change: 1 addition & 0 deletions .github/workflows/checks-quick.yml
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,7 @@ jobs:
CONFIG: .github/.markdownlint.yaml
run: |
echo "Checking markdown formatting. More info: docs/contributor/markdown_linting.md"
echo "To fix potential erros, you can run 'markdownlint --config .github/.markdownlint.yaml -f --ignore target .' locally."
markdownlint --config "$CONFIG" --ignore target .
check-umbrella:
runs-on: ubuntu-latest
Expand Down
24 changes: 0 additions & 24 deletions .gitlab/pipeline/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,30 +24,6 @@ check-try-runtime:
# experimental code may rely on try-runtime and vice-versa
- time cargo check --locked --all --features try-runtime,experimental

# FIXME
.cargo-deny-licenses:
stage: check
extends:
- .docker-env
- .test-pr-refs
variables:
CARGO_DENY_CMD: "cargo deny --all-features check licenses -c ./substrate/scripts/ci/deny.toml"
script:
- $CARGO_DENY_CMD --hide-inclusion-graph
after_script:
- echo "___The complete log is in the artifacts___"
- $CARGO_DENY_CMD 2> deny.log
- if [ $CI_JOB_STATUS != 'success' ]; then
echo 'Please check license of your crate or add an exception to scripts/ci/deny.toml';
fi
allow_failure: true
artifacts:
name: $CI_COMMIT_SHORT_SHA
expire_in: 3 days
when: always
paths:
- deny.log

# from substrate
# not sure if it's needed in monorepo
check-dependency-rules:
Expand Down
Loading