-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(pipeline): initial implementation for easy/preset pipeline execu…
…tion mode added (#345) * feat(pipeline): initial implementation for easy/preset pipeline execution mode added * fix(config): allow to disable preset mode * feat(usage): add initial tests for preset usage * fix(tests): use correct preset commands * fix(tests): add wrapped test script for settings * fix(test): remove log check * fix(test): remove check parameter * fix(test): set config yaml only if preset is disabled
- Loading branch information
Showing
6 changed files
with
314 additions
and
9 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
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
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,10 @@ | ||
OUTPUT=$1 | ||
|
||
EXPECTED_MEMORY=2000 | ||
MEMORY=$(find $OUTPUT -name 'params_*' | head -n 1 | xargs -I {} yq '.resources | .highmemLarge | .memory' {}) | ||
|
||
if [ "$MEMORY" -eq "$EXPECTED_MEMORY" ]; then | ||
exit 0 | ||
else | ||
exit 1 | ||
fi |
Oops, something went wrong.