File tree Expand file tree Collapse file tree 2 files changed +12
-1
lines changed Expand file tree Collapse file tree 2 files changed +12
-1
lines changed Original file line number Diff line number Diff line change 68
68
run : SKIP_WASM_BUILD=1 cargo doc --workspace --no-deps
69
69
timeout-minutes : 15
70
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 solochain-template-node --release
77
+ timeout-minutes : 90
78
+
71
79
build-docker :
72
80
runs-on : ubuntu-latest
73
81
steps :
Original file line number Diff line number Diff line change @@ -85,7 +85,10 @@ substrate-build-script-utils.workspace = true
85
85
substrate-build-script-utils.default-features = true
86
86
87
87
[features ]
88
- default = []
88
+ default = [" std" ]
89
+ std = [
90
+ " solochain-template-runtime/std" ,
91
+ ]
89
92
# Dependencies that are only required if runtime benchmarking should be build.
90
93
runtime-benchmarks = [
91
94
" frame-benchmarking-cli/runtime-benchmarks" ,
You can’t perform that action at this time.
0 commit comments