Add CI for monorepo (#1145)

* Add CI for monorepo

* fix frame tests

* Format features

Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>

* add note for skipping tests and disable test-linux-stable-all

* Fix tests and compile issues (#1152)

* Fix feature dependant import

Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>

* Bump test timeout

Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>

* Remove feature gate

Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>

* Add resolver 2

Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>

* Remove old lockfile

Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>

* Format features

Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>

---------

Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>

* Fix check-dependency-rules

Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>

* rm test-runtime

Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>

* Actually fix script

Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>

* enable cargo-check-each-crate-macos

* Run check-each-crate on 6 machines (#1163)

---------

Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>
Co-authored-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>
This commit is contained in:
Alexander Samusev
2023-08-25 16:35:22 +02:00
committed by GitHub
parent 1a38d6d6be
commit e49493442a
157 changed files with 5001 additions and 18604 deletions
+5 -5
View File
@@ -24,17 +24,17 @@ bounded-collections = { version = "0.1.8", default-features = false, features =
serde = { version = "1.0.163", default-features = false, features = ["derive", "alloc"] }
[features]
default = ["std"]
default = [ "std" ]
wasm-api = []
std = [
"bounded-collections/std",
"frame-support/std",
"parity-scale-codec/std",
"polkadot-core-primitives/std",
"scale-info/std",
"serde/std",
"sp-std/std",
"sp-runtime/std",
"sp-core/std",
"polkadot-core-primitives/std",
"frame-support/std",
"sp-runtime/std",
"sp-std/std",
]
runtime-benchmarks = []
@@ -18,5 +18,5 @@ halt = { package = "test-parachain-halt", path = "halt" }
sp-core = { path = "../../../substrate/primitives/core" }
[features]
default = ["std"]
std = ["adder/std", "halt/std"]
default = [ "std" ]
std = [ "adder/std", "halt/std" ]
@@ -23,7 +23,4 @@ substrate-wasm-builder = { path = "../../../../substrate/utils/wasm-builder" }
[features]
default = [ "std" ]
std = [
"parachain/std",
"sp-std/std",
]
std = [ "parachain/std", "sp-std/std" ]
@@ -51,7 +51,7 @@ test-parachain-adder-collator = { path = "", features = ["test-utils"] }
tokio = { version = "1.24.2", features = ["macros"] }
[features]
network-protocol-staging = ["polkadot-cli/network-protocol-staging"]
network-protocol-staging = [ "polkadot-cli/network-protocol-staging" ]
# This feature is used to export test code to other crates without putting it in the production build.
# This is also used by the `puppet_worker` binary.
test-utils = ["polkadot-node-core-pvf/test-utils"]
test-utils = [ "polkadot-node-core-pvf/test-utils" ]
@@ -24,7 +24,4 @@ substrate-wasm-builder = { path = "../../../../substrate/utils/wasm-builder" }
[features]
default = [ "std" ]
std = [
"parachain/std",
"sp-std/std",
]
std = [ "parachain/std", "sp-std/std" ]
@@ -53,4 +53,4 @@ tokio = { version = "1.24.2", features = ["macros"] }
[features]
# This feature is used to export test code to other crates without putting it in the production build.
# This is also used by the `puppet_worker` binary.
test-utils = ["polkadot-node-core-pvf/test-utils"]
test-utils = [ "polkadot-node-core-pvf/test-utils" ]