chore(linux): Add support for --no-integration flag to build files

This allows to use the `linux/build.sh` file to specify the
`--no-integration` flag which makes it easier to specify jobs on CI
because it then doesn't need to know all subprojects.
This commit is contained in:
Eberhard Beilharz 2023-07-06 12:38:26 +02:00
parent a61d95f419
commit d20cc6978c
No known key found for this signature in database
GPG key ID: E9140597606020D3
3 changed files with 5 additions and 2 deletions

View file

@ -22,7 +22,8 @@ builder_describe \
"build" \
"test" \
"install install artifacts" \
"uninstall uninstall artifacts"
"uninstall uninstall artifacts" \
"--no-integration+ don't run integration tests"
builder_parse "$@"

View file

@ -16,6 +16,7 @@ builder_describe \
"test" \
"install install artifacts" \
"uninstall uninstall artifacts" \
"--no-integration don't run integration tests"
builder_parse "$@"

View file

@ -16,7 +16,8 @@ builder_describe \
"build" \
"test" \
"install install artifacts" \
"uninstall uninstall artifacts"
"uninstall uninstall artifacts" \
"--no-integration don't run integration tests"
builder_parse "$@"