Merge pull request #119 from kinvolk/krnowak/jobs-fix

Fix missing jobs parameter
This commit is contained in:
Krzesimir Nowak 2021-02-16 10:24:09 +01:00 committed by GitHub
commit b1e730d0ed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 0 deletions

View File

@ -54,6 +54,8 @@ DEFINE_string version "" \
"Sets the docker version to build."
DEFINE_integer aci_version "" \
"Sets the aci version tag identifier."
DEFINE_integer jobs "${NUM_JOBS}" \
"How many packages to build in parallel at maximum."
# Parse command line.
FLAGS "$@" || exit 1

View File

@ -522,6 +522,7 @@ install_oem_aci() {
"${SCRIPT_ROOT}/build_oem_aci" \
--board="${BOARD}" \
--build_dir="${aci_dir}" \
--jobs="${FLAGS_jobs}" \
"${binpkgflags[@]}" \
"${oem_aci}"

View File

@ -46,6 +46,8 @@ DEFINE_string output_root "${DEFAULT_BUILD_ROOT}/images" \
"Directory in which to place image result directories (named by version)"
DEFINE_string version "" \
"Overrides version number in name to this version."
DEFINE_integer jobs "${NUM_JOBS}" \
"How many packages to build in parallel at maximum."
# Parse command line.
FLAGS "$@" || exit 1