-
Notifications
You must be signed in to change notification settings - Fork 97
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enable multiline build for better packaging of dora node. (#683)
It is necessary to make build multiline in order to build certain node. This allow users to do the following: ```bash nodes: - id: dora-microphone build: | pip install -e ../../node-hub/dora-microphones pip install -e ../../node-hub/dora-vad path: dora-microphone ``` or ```bash nodes: - id: dora-microphone build: | sudo apt install abc pip install bar path: dora-microphone ```
- Loading branch information
Showing
2 changed files
with
23 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
nodes: | ||
- id: dora-microphone | ||
build: | | ||
pip install -e ../../node-hub/dora-microphones | ||
pip install -e ../../node-hub/dora-vad | ||
path: dora-microphone |