Skip to content

Commit

Permalink
Add missing features (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
rzadp authored Aug 8, 2024
1 parent b6770d6 commit 1b627cd
Show file tree
Hide file tree
Showing 2 changed files with 12 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 minimal-template-node --release
timeout-minutes: 90

build-docker:
runs-on: ubuntu-latest
steps:
Expand Down
5 changes: 4 additions & 1 deletion node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 comments on commit 1b627cd

Please sign in to comment.