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

Phase 1 of repo reorg #719

Merged
merged 24 commits into from
Sep 12, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
8552090
Remove unneeded script
gavofyork Sep 11, 2018
5e80b1a
Rename Substrate Demo -> Substrate
gavofyork Sep 11, 2018
4aa94ec
Rename demo -> node
gavofyork Sep 11, 2018
eb5cc9d
Build wasm from last rename.
gavofyork Sep 11, 2018
4147286
Merge ed25519 into substrate-primitives
gavofyork Sep 11, 2018
0ac78f9
Minor tweak
gavofyork Sep 11, 2018
804ad47
Rename substrate -> core
gavofyork Sep 11, 2018
f637a58
Move substrate-runtime-support to core/runtime/support
gavofyork Sep 11, 2018
bcab227
Rename/move substrate-runtime-version
gavofyork Sep 11, 2018
54330e4
Move codec up a level
gavofyork Sep 11, 2018
6b02eb5
Rename substrate-codec -> parity-codec
gavofyork Sep 11, 2018
6412d02
Move environmental up a level
gavofyork Sep 11, 2018
750c7ee
Move pwasm-* up to top, ready for removal
gavofyork Sep 11, 2018
9a3cd9f
Remove requirement of s-r-support from s-r-primitives
gavofyork Sep 11, 2018
2f47756
Move core/runtime/primitives into core/runtime-primitives
gavofyork Sep 11, 2018
bc8265c
Remove s-r-support dep from s-r-version
gavofyork Sep 11, 2018
b25b789
Remove dep of s-r-support from bft
gavofyork Sep 11, 2018
0fb1e94
Remove dep of s-r-support from node/consensus
gavofyork Sep 11, 2018
c70f16a
Sever all other core deps from s-r-support
gavofyork Sep 12, 2018
24e37a9
Forgot the no_std directive
gavofyork Sep 12, 2018
5103a69
Rename non-SRML modules to sr-* to avoid match clashes
gavofyork Sep 12, 2018
0840e3f
Move runtime/* to srml/*
gavofyork Sep 12, 2018
2a919d1
Rename substrate-runtime-* -> srml-*
gavofyork Sep 12, 2018
f7195cf
Move srml to top-level
gavofyork Sep 12, 2018
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
  •  
  •  
  •  
14 changes: 7 additions & 7 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
*.swp
.wasm-binaries
polkadot/runtime/wasm/target/
substrate/executor/wasm/target/
substrate/test-runtime/wasm/target/
substrate/pwasm-alloc/target/
substrate/pwasm-libc/target/
substrate/pwasm-alloc/Cargo.lock
substrate/pwasm-libc/Cargo.lock
demo/runtime/wasm/target/
core/executor/wasm/target/
core/test-runtime/wasm/target/
pwasm-alloc/target/
pwasm-libc/target/
pwasm-alloc/Cargo.lock
pwasm-libc/Cargo.lock
node/runtime/wasm/target/
**/._*
.vscode
polkadot.*
Expand Down
2 changes: 0 additions & 2 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@ test:rust:stable: &test
- ./scripts/init.sh
- export PATH="${CI_PROJECT_DIR}/cargo/bin/:$PATH"
- ./scripts/build.sh
- ./scripts/build-demos.sh
- time cargo test --all --release
tags:
- rust-stable
Expand All @@ -74,7 +73,6 @@ build:linux:ubuntu:amd64: &build
- ./scripts/init.sh
- export PATH="${CI_PROJECT_DIR}/cargo/bin/:$PATH"
- ./scripts/build.sh
- ./scripts/build-demos.sh
- cargo build --release
<<: *collect_artifacts
tags:
Expand Down
4 changes: 2 additions & 2 deletions CONTRIBUTING.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ There are a few basic ground-rules for contributors (including the maintainer(s)

Merging pull requests once CI is successful:

. A pull request that does not alter any logic (e.g. comments, dependencies, docs) may be tagged https://github.com/paritytech/substrate/pulls?utf8=%E2%9C%93&q=is%3Apr+is%3Aopen+label%3AA2-insubstantial[`insubstantial`] and merged by its author.
. A pull request that does not alter any logic (e.g. comments, dependencies, docs) may be tagged https://github.com/paritytech/core/pulls?utf8=%E2%9C%93&q=is%3Apr+is%3Aopen+label%3AA2-insubstantial[`insubstantial`] and merged by its author.
. A pull request with no large change to logic that is an urgent fix may be merged after a non-author contributor has reviewed it well.
. All other PRs should sit for 48 hours with the https://github.com/paritytech/substrate/pulls?q=is%3Apr+is%3Aopen+label%3AA0-pleasereview[`pleasereview`] tag in order to garner feedback.
. All other PRs should sit for 48 hours with the https://github.com/paritytech/core/pulls?q=is%3Apr+is%3Aopen+label%3AA0-pleasereview[`pleasereview`] tag in order to garner feedback.
. No PR should be merged until all reviews' comments are addressed.

.Reviewing pull requests:
Expand Down
Loading