We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b6770d6 commit 1b627cdCopy full SHA for 1b627cd
.github/workflows/ci.yml
@@ -68,6 +68,14 @@ jobs:
68
run: SKIP_WASM_BUILD=1 cargo doc --workspace --no-deps
69
timeout-minutes: 15
70
71
+ # This is mentioned as example in the README:
72
+ - name: Build the node individually in release mode
73
+ run: |
74
+ # Save some space from debug builds
75
+ rm -rf ./target
76
+ cargo build --package minimal-template-node --release
77
+ timeout-minutes: 90
78
+
79
build-docker:
80
runs-on: ubuntu-latest
81
steps:
node/Cargo.toml
@@ -70,4 +70,7 @@ substrate-build-script-utils.workspace = true
substrate-build-script-utils.default-features = true
[features]
-default = []
+default = ["std"]
+std = [
+ "minimal-template-runtime/std",
+]
0 commit comments