-
Notifications
You must be signed in to change notification settings - Fork 147
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix maiden-repl dependency checking * edge.sh: fail fast, limit build parallelism assuming the target audience for `edge.sh` is a less technical person testing unreleased features it makes sense to exit as soon as one of the commands fails (such as `waf configure`) instead of continuing on to produce a bad build or errors which obscure the initial problem. limiting parallelism is a safety. building more than two of the c++ components in parallel with the matron/crone/supercollider running will somewhat often run out of memory and fail. limiting the build to two jobs leaves ~100Mb of headroom during a clean build
- Loading branch information
Showing
3 changed files
with
7 additions
and
6 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
#!/bin/sh | ||
set -e | ||
cd "$(dirname "$0")" | ||
git pull | ||
git submodule update | ||
./waf configure | ||
./waf | ||
|
||
./waf -j2 |
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