Skip to content

Commit

Permalink
Add missing features (#10)
Browse files Browse the repository at this point in the history
Co-authored-by: Przemek Rzad <[email protected]>
Co-authored-by: Shawn Tabrizi <[email protected]>
  • Loading branch information
3 people authored Aug 8, 2024
1 parent 58f9c99 commit 58f58b2
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
8 changes: 8 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,14 @@ jobs:
run: SKIP_WASM_BUILD=1 cargo doc --workspace --no-deps
timeout-minutes: 15

# This is mentioned as example in the README:
- name: Build the node individually in release mode
run: |
# Save some space from debug builds
rm -rf ./target
cargo build --package parachain-template-node --release
timeout-minutes: 90

build-docker:
runs-on: ubuntu-latest
steps:
Expand Down
7 changes: 6 additions & 1 deletion node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,12 @@ substrate-build-script-utils.workspace = true
substrate-build-script-utils.default-features = true

[features]
default = []
default = ["std"]
std = [
"parachain-template-runtime/std",
"log/std",
"xcm/std"
]
runtime-benchmarks = [
"cumulus-primitives-core/runtime-benchmarks",
"frame-benchmarking-cli/runtime-benchmarks",
Expand Down

0 comments on commit 58f58b2

Please sign in to comment.