X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/06cf38c24519fa21556686545c768429b5af50dc..refs/heads/13220-run-tests:/build/run-build-packages-sso.sh diff --git a/build/run-build-packages-sso.sh b/build/run-build-packages-sso.sh index cc673a6d33..bd3975841b 100755 --- a/build/run-build-packages-sso.sh +++ b/build/run-build-packages-sso.sh @@ -1,4 +1,7 @@ #!/bin/bash +# Copyright (C) The Arvados Authors. All rights reserved. +# +# SPDX-License-Identifier: AGPL-3.0 JENKINS_DIR=$(dirname $(readlink -e "$0")) . "$JENKINS_DIR/run-library.sh" @@ -14,7 +17,7 @@ Options: --debug Output debug information (default: false) --target - Distribution to build packages for (default: debian7) + Distribution to build packages for (default: debian8) WORKSPACE=path Path to the Arvados SSO source tree to build packages from @@ -22,7 +25,7 @@ EOF EXITCODE=0 DEBUG=${ARVADOS_DEBUG:-0} -TARGET=debian7 +TARGET=debian8 PARSEDOPTS=$(getopt --name "$0" --longoptions \ help,build-bundle-packages,debug,target: \ @@ -68,10 +71,10 @@ if [[ "$DEBUG" != 0 ]]; then fi case "$TARGET" in - debian7) + debian8) FORMAT=deb ;; - debian8) + debian9) FORMAT=deb ;; ubuntu1204) @@ -80,7 +83,10 @@ case "$TARGET" in ubuntu1404) FORMAT=deb ;; - centos6) + ubuntu1604) + FORMAT=deb + ;; + centos7) FORMAT=rpm ;; *)