X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/b6d7efab2c4bffa3fabd55b166e44cca8ac1391f..a4a1420766c6e2e84e61f1d5e8cbb319521af31e:/build/run-build-packages-one-target.sh?ds=sidebyside diff --git a/build/run-build-packages-one-target.sh b/build/run-build-packages-one-target.sh index f476a9691c..4c55458d46 100755 --- a/build/run-build-packages-one-target.sh +++ b/build/run-build-packages-one-target.sh @@ -21,6 +21,8 @@ Syntax: Build only a specific package --only-test Test only a specific package +--only-arch + Build only a specific architecture (amd64 or arm64) --force-build Build even if the package exists upstream or if it has already been built locally @@ -54,13 +56,14 @@ if ! [[ -d "$WORKSPACE" ]]; then fi PARSEDOPTS=$(getopt --name "$0" --longoptions \ - help,debug,test-packages,target:,command:,only-test:,force-test,only-build:,force-build,build-version: \ + help,debug,test-packages,target:,command:,only-test:,force-test,only-build:,force-build,only-arch:,build-version: \ -- "" "$@") if [ $? -ne 0 ]; then exit 1 fi TARGET=debian10 +ONLY_ARCH= FORCE_BUILD=0 COMMAND= DEBUG= @@ -90,6 +93,9 @@ while [ $# -gt 0 ]; do --only-build) ONLY_BUILD="$2"; shift ;; + --only-arch) + ONLY_ARCH="$2"; shift + ;; --debug) DEBUG=" --debug" ARVADOS_DEBUG="1" @@ -106,7 +112,11 @@ while [ $# -gt 0 ]; do elif ! [[ "$2" =~ (.*)-(.*) ]]; then echo >&2 "FATAL: --build-version '$2' does not include an iteration. Try '${2}-1'?" exit 1 + elif ! [[ "$2" =~ ^[0-9]+\.[0-9]+\.[0-9]+(\.[0-9]+|)(~rc[0-9]+|~dev[0-9]+|)-[0-9]+$ ]]; then + echo >&2 "FATAL: --build-version '$2' is invalid, must match pattern ^[0-9]+\.[0-9]+\.[0-9]+(\.[0-9]+|)(~rc[0-9]+|~dev[0-9]+|)-[0-9]+$" + exit 1 else + [[ "$2" =~ (.*)-(.*) ]] ARVADOS_BUILDING_VERSION="${BASH_REMATCH[1]}" ARVADOS_BUILDING_ITERATION="${BASH_REMATCH[2]}" fi @@ -143,6 +153,22 @@ if [[ -n "$test_packages" ]]; then fi if [[ -n "$(find $WORKSPACE/packages/$TARGET -name '*.deb')" ]] ; then + set +e + /usr/bin/which dpkg-scanpackages >/dev/null + if [[ "$?" != "0" ]]; then + echo >&2 + echo >&2 "Error: please install dpkg-dev. E.g. sudo apt-get install dpkg-dev" + echo >&2 + exit 1 + fi + /usr/bin/which apt-ftparchive >/dev/null + if [[ "$?" != "0" ]]; then + echo >&2 + echo >&2 "Error: please install apt-utils. E.g. sudo apt-get install apt-utils" + echo >&2 + exit 1 + fi + set -e (cd $WORKSPACE/packages/$TARGET dpkg-scanpackages . 2> >(grep -v 'warning' 1>&2) | tee Packages | gzip -c > Packages.gz apt-ftparchive -o APT::FTPArchive::Release::Origin=Arvados release . > Release @@ -170,31 +196,45 @@ fi echo $TARGET cd $TARGET -time docker build --tag=$IMAGE . +time docker build --tag "$IMAGE" --build-arg HOSTTYPE=$HOSTTYPE . popd if test -z "$packages" ; then packages="arvados-api-server arvados-client + arvados-controller + arvados-dispatch-cloud + arvados-dispatch-lsf arvados-docker-cleaner arvados-git-httpd - arvados-node-manager + arvados-health + arvados-server arvados-src + arvados-sync-groups arvados-workbench + arvados-workbench2 + arvados-ws crunch-dispatch-local crunch-dispatch-slurm crunch-run crunchstat + keepproxy + keepstore keep-balance keep-block-check - keepproxy keep-rsync - keepstore + keep-exercise + keep-rsync + keep-block-check keep-web libarvados-perl - python-arvados-fuse - python-arvados-python-client - python-arvados-cwl-runner" + libpam-arvados-go + python3-cwltest + python3-arvados-fuse + python3-arvados-python-client + python3-arvados-cwl-runner + python3-crunchstat-summary + python3-arvados-user-activity" fi FINAL_EXITCODE=0 @@ -277,6 +317,7 @@ else --env ARVADOS_DEBUG=$ARVADOS_DEBUG \ --env "ONLY_BUILD=$ONLY_BUILD" \ --env "FORCE_BUILD=$FORCE_BUILD" \ + --env "ONLY_ARCH=$ONLY_ARCH" \ "$IMAGE" $COMMAND then echo