X-Git-Url: https://git.arvados.org/arvados-dev.git/blobdiff_plain/b5494642ea862658418d2f9a419b10d1fe25431a..4735c45083770bf8344dd80dd84695bb4e0fd169:/jenkins/run-build-packages.sh diff --git a/jenkins/run-build-packages.sh b/jenkins/run-build-packages.sh index fbd5fa5..c6e658c 100755 --- a/jenkins/run-build-packages.sh +++ b/jenkins/run-build-packages.sh @@ -1,5 +1,7 @@ #!/bin/bash +. `dirname "$(readlink -f "$0")"`/run-library.sh +. `dirname "$(readlink -f "$0")"`/libcloud-pin read -rd "\000" helpmessage <&2 "$0: unrecognized argument '$2'. Try: $0 --help" @@ -59,6 +68,10 @@ while [ $# -gt 0 ]; do shift done +if [[ "$COMMAND" != "" ]]; then + COMMAND="/usr/local/rvm/bin/rvm-exec default bash /jenkins/$COMMAND --target $TARGET" +fi + STDOUT_IF_DEBUG=/dev/null STDERR_IF_DEBUG=/dev/null DASHQ_UNLESS_DEBUG=-q @@ -68,10 +81,6 @@ if [[ "$DEBUG" != 0 ]]; then DASHQ_UNLESS_DEBUG= fi -debug_echo () { - echo "$@" >"$STDOUT_IF_DEBUG" -} - declare -a PYTHON_BACKPORTS PYTHON3_BACKPORTS PYTHON2_VERSION=2.7 @@ -86,9 +95,9 @@ case "$TARGET" in PYTHON3_PKG_PREFIX=python3 PYTHON_BACKPORTS=(python-gflags pyvcf google-api-python-client \ oauth2client pyasn1==0.1.7 pyasn1-modules==0.0.5 \ - rsa uritemplate httplib2 ws4py \ - virtualenv pykka apache-libcloud requests six pyexecjs jsonschema \ - ciso8601 pycrypto backports.ssl_match_hostname pycurl llfuse) + rsa uritemplate httplib2 ws4py pykka six pyexecjs jsonschema \ + ciso8601 pycrypto backports.ssl_match_hostname llfuse \ + 'pycurl<7.21.5') PYTHON3_BACKPORTS=(docker-py six requests websocket-client) ;; debian8) @@ -99,9 +108,9 @@ case "$TARGET" in PYTHON3_PKG_PREFIX=python3 PYTHON_BACKPORTS=(python-gflags pyvcf google-api-python-client \ oauth2client pyasn1==0.1.7 pyasn1-modules==0.0.5 \ - rsa uritemplate httplib2 ws4py \ - virtualenv pykka apache-libcloud requests six pyexecjs jsonschema \ - ciso8601 pycrypto backports.ssl_match_hostname pycurl llfuse) + rsa uritemplate httplib2 ws4py pykka six pyexecjs jsonschema \ + ciso8601 pycrypto backports.ssl_match_hostname llfuse \ + 'pycurl<7.21.5') PYTHON3_BACKPORTS=(docker-py six requests websocket-client) ;; ubuntu1204) @@ -112,9 +121,9 @@ case "$TARGET" in PYTHON3_PKG_PREFIX=python3 PYTHON_BACKPORTS=(python-gflags pyvcf google-api-python-client \ oauth2client pyasn1==0.1.7 pyasn1-modules==0.0.5 \ - rsa uritemplate httplib2 ws4py \ - virtualenv pykka apache-libcloud requests six pyexecjs jsonschema \ - ciso8601 pycrypto backports.ssl_match_hostname pycurl llfuse) + rsa uritemplate httplib2 ws4py pykka six pyexecjs jsonschema \ + ciso8601 pycrypto backports.ssl_match_hostname llfuse \ + 'pycurl<7.21.5') PYTHON3_BACKPORTS=(docker-py six requests websocket-client) ;; ubuntu1404) @@ -125,7 +134,7 @@ case "$TARGET" in PYTHON3_PKG_PREFIX=python3 PYTHON_BACKPORTS=(pyasn1==0.1.7 pyvcf pyasn1-modules==0.0.5 llfuse ciso8601 \ google-api-python-client six uritemplate oauth2client httplib2 \ - rsa apache-libcloud pycurl backports.ssl_match_hostname) + rsa 'pycurl<7.21.5' backports.ssl_match_hostname) PYTHON3_BACKPORTS=(docker-py requests websocket-client) ;; centos6) @@ -136,11 +145,10 @@ case "$TARGET" in PYTHON3_PKG_PREFIX=$PYTHON3_PACKAGE PYTHON_BACKPORTS=(python-gflags pyvcf google-api-python-client \ oauth2client pyasn1==0.1.7 pyasn1-modules==0.0.5 \ - rsa uritemplate httplib2 ws4py \ - pykka apache-libcloud requests six pyexecjs jsonschema \ - ciso8601 pycrypto backports.ssl_match_hostname pycurl - python-daemon lockfile llfuse) - PYTHON3_BACKPORTS=(docker-py six requests) + rsa uritemplate httplib2 ws4py pykka six pyexecjs jsonschema \ + ciso8601 pycrypto backports.ssl_match_hostname 'pycurl<7.21.5' \ + python-daemon lockfile llfuse 'pbr<1.0') + PYTHON3_BACKPORTS=(docker-py six requests websocket-client) export PYCURL_SSL_LIBRARY=nss ;; *) @@ -169,22 +177,6 @@ if [[ "$?" != 0 ]]; then exit 1 fi -find_easy_install() { - for version_suffix in "$@"; do - if "easy_install$version_suffix" --version >/dev/null 2>&1; then - echo "easy_install$version_suffix" - return 0 - fi - done - cat >&2 <"$STDOUT_IF_DEBUG" 2>"$STDERR_IF_DEBUG" - fi -} - -# Build packages for everything -fpm_build () { - # The package source. Depending on the source type, this can be a - # path, or the name of the package in an upstream repository (e.g., - # pip). - PACKAGE=$1 - shift - # The name of the package to build. Defaults to $PACKAGE. - PACKAGE_NAME=${1:-$PACKAGE} - shift - # Optional: the vendor of the package. Should be "Curoverse, Inc." for - # packages of our own software. Passed to fpm --vendor. - VENDOR=$1 - shift - # The type of source package. Passed to fpm -s. Default "python". - PACKAGE_TYPE=${1:-python} - shift - # Optional: the package version number. Passed to fpm -v. - VERSION=$1 - shift - - case "$PACKAGE_TYPE" in - python) - # All Arvados Python2 packages depend on Python 2.7. - # Make sure we build with that for consistency. - set -- "$@" --python-bin python2.7 \ - --python-easyinstall "$EASY_INSTALL2" \ - --python-package-name-prefix "$PYTHON2_PKG_PREFIX" \ - --depends "$PYTHON2_PACKAGE" - ;; - python3) - # fpm does not actually support a python3 package type. Instead - # we recognize it as a convenience shortcut to add several - # necessary arguments to fpm's command line later, after we're - # done handling positional arguments. - PACKAGE_TYPE=python - set -- "$@" --python-bin python3 \ - --python-easyinstall "$EASY_INSTALL3" \ - --python-package-name-prefix "$PYTHON3_PKG_PREFIX" \ - --depends "$PYTHON3_PACKAGE" - ;; - esac - - declare -a COMMAND_ARR=("fpm" "--maintainer=Ward Vandewege " "-s" "$PACKAGE_TYPE" "-t" "$FORMAT") - if [ python = "$PACKAGE_TYPE" ]; then - COMMAND_ARR+=(--exclude=\*/{dist,site}-packages/tests/\*) - fi - - if [[ "$PACKAGE_NAME" != "$PACKAGE" ]]; then - COMMAND_ARR+=('-n' "$PACKAGE_NAME") - fi - - if [[ "$VENDOR" != "" ]]; then - COMMAND_ARR+=('--vendor' "$VENDOR") - fi - - if [[ "$VERSION" != "" ]]; then - COMMAND_ARR+=('-v' "$VERSION") - fi - - # Append remaining function arguments directly to fpm's command line. - for i; do - COMMAND_ARR+=("$i") - done - - # Append --depends X and other arguments specified by fpm-info.sh in - # the package source dir. These are added last so they can override - # the arguments added by this script. - declare -a fpm_args=() - declare -a fpm_depends=() - if [[ -d "$PACKAGE" ]]; then - FPM_INFO="$PACKAGE/fpm-info.sh" - else - FPM_INFO="${WORKSPACE}/backports/${PACKAGE_TYPE}-${PACKAGE}/fpm-info.sh" - fi - if [[ -e "$FPM_INFO" ]]; then - debug_echo "Loading fpm overrides from $FPM_INFO" - source "$FPM_INFO" - fi - for i in "${fpm_depends[@]}"; do - COMMAND_ARR+=('--depends' "$i") - done - COMMAND_ARR+=("${fpm_args[@]}") - - COMMAND_ARR+=("$PACKAGE") - - debug_echo -e "\n${COMMAND_ARR[@]}\n" - - FPM_RESULTS=$("${COMMAND_ARR[@]}") - FPM_EXIT_CODE=$? - - fpm_verify $FPM_EXIT_CODE $FPM_RESULTS -} - -# verify build results -fpm_verify () { - FPM_EXIT_CODE=$1 - shift - FPM_RESULTS=$@ - - FPM_PACKAGE_NAME='' - if [[ $FPM_RESULTS =~ ([A-Za-z0-9_\.-]*\.)(deb|rpm) ]]; then - FPM_PACKAGE_NAME=${BASH_REMATCH[1]}${BASH_REMATCH[2]} - fi - - if [[ "$FPM_PACKAGE_NAME" == "" ]]; then - EXITCODE=1 - echo "Error: $PACKAGE: Unable to figure out package name from fpm results:" - echo - echo $FPM_RESULTS - echo - elif [[ "$FPM_RESULTS" =~ "File already exists" ]]; then - echo "Package $FPM_PACKAGE_NAME exists, not rebuilding" - elif [[ 0 -ne "$FPM_EXIT_CODE" ]]; then - echo "Error building package for $1:\n $FPM_RESULTS" - fi -} - if [[ -f /etc/profile.d/rvm.sh ]]; then source /etc/profile.d/rvm.sh GEM="rvm-exec default gem" @@ -400,8 +230,9 @@ rm -rf install perl Makefile.PL INSTALL_BASE=install >"$STDOUT_IF_DEBUG" && \ make install INSTALLDIRS=perl >"$STDOUT_IF_DEBUG" && \ fpm_build install/lib/=/usr/share libarvados-perl \ - "Curoverse, Inc." dir "$(version_from_git)" install/man/=/usr/share/man && \ - mv libarvados-perl*.$FORMAT "$WORKSPACE/packages/$TARGET/" + "Curoverse, Inc." dir "$(version_from_git)" install/man/=/usr/share/man \ + "$WORKSPACE/LICENSE-2.0.txt=/usr/share/doc/libarvados-perl/LICENSE-2.0.txt" && \ + mv --no-clobber libarvados-perl*.$FORMAT "$WORKSPACE/packages/$TARGET/" # Ruby gems debug_echo -e "\nRuby gems\n" @@ -426,6 +257,9 @@ handle_python_package cd "$WORKSPACE/sdk/python" handle_python_package +cd "$WORKSPACE/sdk/cwl" +handle_python_package + cd "$WORKSPACE/services/fuse" handle_python_package @@ -440,6 +274,8 @@ handle_python_package COMMIT_HASH=$(format_last_commit_here "%H") SRC_BUILD_DIR=$(mktemp -d) + # mktemp creates the directory with 0700 permissions by default + chmod 755 $SRC_BUILD_DIR git clone $DASHQ_UNLESS_DEBUG "$WORKSPACE/.git" "$SRC_BUILD_DIR" cd "$SRC_BUILD_DIR" @@ -452,77 +288,25 @@ handle_python_package cd $WORKSPACE/packages/$TARGET fpm_build $SRC_BUILD_DIR/=/usr/local/arvados/src arvados-src 'Curoverse, Inc.' 'dir' "$PKG_VERSION" "--exclude=usr/local/arvados/src/.git" "--url=https://arvados.org" "--license=GNU Affero General Public License, version 3.0" "--description=The Arvados source code" "--architecture=all" - rm -r "$SRC_BUILD_DIR" + rm -rf "$SRC_BUILD_DIR" ) -# Keep +# Go binaries export GOPATH=$(mktemp -d) -mkdir -p "$GOPATH/src/git.curoverse.com" -ln -sfn "$WORKSPACE" "$GOPATH/src/git.curoverse.com/arvados.git" - -# keepstore -cd "$GOPATH/src/git.curoverse.com/arvados.git/services/keepstore" -PKG_VERSION=$(version_from_git) -go get "git.curoverse.com/arvados.git/services/keepstore" -cd $WORKSPACE/packages/$TARGET -fpm_build $GOPATH/bin/keepstore=/usr/bin/keepstore keepstore 'Curoverse, Inc.' 'dir' "$PKG_VERSION" "--url=https://arvados.org" "--license=GNU Affero General Public License, version 3.0" "--description=Keepstore is the Keep storage daemon, accessible to clients on the LAN" - -# Get GO SDK version -cd "$GOPATH/src/git.curoverse.com/arvados.git/sdk/go" -GO_SDK_VERSION=$(version_from_git) -GO_SDK_TIMESTAMP=$(timestamp_from_git) - -# keepproxy -cd "$GOPATH/src/git.curoverse.com/arvados.git/services/keepproxy" -KEEPPROXY_VERSION=$(version_from_git) -KEEPPROXY_TIMESTAMP=$(timestamp_from_git) - -if [[ "$GO_SDK_TIMESTAMP" -gt "$KEEPPROXY_TIMESTAMP" ]]; then - PKG_VERSION=$GO_SDK_VERSION -else - PKG_VERSION=$KEEPPROXY_VERSION -fi - -go get "git.curoverse.com/arvados.git/services/keepproxy" -cd $WORKSPACE/packages/$TARGET -fpm_build $GOPATH/bin/keepproxy=/usr/bin/keepproxy keepproxy 'Curoverse, Inc.' 'dir' "$PKG_VERSION" "--url=https://arvados.org" "--license=GNU Affero General Public License, version 3.0" "--description=Keepproxy makes a Keep cluster accessible to clients that are not on the LAN" - -# datamanager -cd "$GOPATH/src/git.curoverse.com/arvados.git/services/datamanager" -DATAMANAGER_VERSION=$(version_from_git) -DATAMANAGER_TIMESTAMP=$(timestamp_from_git) - -if [[ "$GO_SDK_TIMESTAMP" -gt "$DATAMANAGER_TIMESTAMP" ]]; then - PKG_VERSION=$GO_SDK_VERSION -else - PKG_VERSION=$DATAMANAGER_VERSION -fi - -go get "git.curoverse.com/arvados.git/services/datamanager" -cd $WORKSPACE/packages/$TARGET -fpm_build $GOPATH/bin/datamanager=/usr/bin/arvados-data-manager arvados-data-manager 'Curoverse, Inc.' 'dir' "$PKG_VERSION" "--url=https://arvados.org" "--license=GNU Affero General Public License, version 3.0" "--description=Datamanager ensures block replication levels, reports on disk usage and determines which blocks should be deleted when space is needed." - -# arv-git-httpd -cd "$GOPATH/src/git.curoverse.com/arvados.git/services/arv-git-httpd" -ARVGITHTTPD_VERSION=$(version_from_git) -ARVGITHTTPD_TIMESTAMP=$(timestamp_from_git) - -if [[ "$GO_SDK_TIMESTAMP" -gt "$ARVGITHTTPD_TIMESTAMP" ]]; then - PKG_VERSION=$GO_SDK_VERSION -else - PKG_VERSION=$ARVGITHTTPD_VERSION -fi - -go get "git.curoverse.com/arvados.git/services/arv-git-httpd" -cd $WORKSPACE/packages/$TARGET -fpm_build $GOPATH/bin/arv-git-httpd=/usr/bin/arvados-git-httpd arvados-git-httpd 'Curoverse, Inc.' 'dir' "$PKG_VERSION" "--url=https://arvados.org" "--license=GNU Affero General Public License, version 3.0" "--description=Provides authenticated http access to Arvados-hosted git repositories." - -# crunchstat -cd "$GOPATH/src/git.curoverse.com/arvados.git/services/crunchstat" -PKG_VERSION=$(version_from_git) -go get "git.curoverse.com/arvados.git/services/crunchstat" -cd $WORKSPACE/packages/$TARGET -fpm_build $GOPATH/bin/crunchstat=/usr/bin/crunchstat crunchstat 'Curoverse, Inc.' 'dir' "$PKG_VERSION" "--url=https://arvados.org" "--license=GNU Affero General Public License, version 3.0" "--description=Crunchstat gathers cpu/memory/network statistics of running Crunch jobs" +package_go_binary services/keepstore keepstore \ + "Keep storage daemon, accessible to clients on the LAN" +package_go_binary services/keepproxy keepproxy \ + "Make a Keep cluster accessible to clients that are not on the LAN" +package_go_binary services/keep-web keep-web \ + "Static web hosting service for user data stored in Arvados Keep" +package_go_binary services/datamanager arvados-data-manager \ + "Ensure block replication levels, report disk usage, and determine which blocks should be deleted when space is needed" +package_go_binary services/arv-git-httpd arvados-git-httpd \ + "Provide authenticated http access to Arvados-hosted git repositories" +package_go_binary services/crunchstat crunchstat \ + "Gather cpu/memory/network statistics of running Crunch jobs" +package_go_binary tools/keep-rsync keep-rsync \ + "Copy all data from one set of Keep servers to another" # The Python SDK # Please resist the temptation to add --no-python-fix-name to the fpm call here @@ -559,10 +343,65 @@ cd $WORKSPACE/packages/$TARGET rm -rf "$WORKSPACE/services/dockercleaner/build" fpm_build $WORKSPACE/services/dockercleaner arvados-docker-cleaner 'Curoverse, Inc.' 'python3' "$(awk '($1 == "Version:"){print $2}' $WORKSPACE/services/dockercleaner/arvados_docker_cleaner.egg-info/PKG-INFO)" "--url=https://arvados.org" "--description=The Arvados Docker image cleaner" -# A few dependencies +# Forked libcloud +LIBCLOUD_DIR=$(mktemp -d) +( + cd $LIBCLOUD_DIR + git clone $DASHQ_UNLESS_DEBUG https://github.com/curoverse/libcloud.git . + git checkout apache-libcloud-$LIBCLOUD_PIN + # libcloud is absurdly noisy without -q, so force -q here + OLD_DASHQ_UNLESS_DEBUG=$DASHQ_UNLESS_DEBUG + DASHQ_UNLESS_DEBUG=-q + handle_python_package + DASHQ_UNLESS_DEBUG=$OLD_DASHQ_UNLESS_DEBUG +) +fpm_build $LIBCLOUD_DIR "$PYTHON2_PKG_PREFIX"-apache-libcloud +rm -rf $LIBCLOUD_DIR + +# Python 2 dependencies +declare -a PIP_DOWNLOAD_SWITCHES=(--no-deps) +# Add --no-use-wheel if this pip knows it. +pip wheel --help >/dev/null 2>&1 +case "$?" in + 0) PIP_DOWNLOAD_SWITCHES+=(--no-use-wheel) ;; + 2) ;; + *) echo "WARNING: `pip wheel` test returned unknown exit code $?" ;; +esac + for deppkg in "${PYTHON_BACKPORTS[@]}"; do outname=$(echo "$deppkg" | sed -e 's/^python-//' -e 's/[<=>].*//' -e 's/_/-/g' -e "s/^/${PYTHON2_PKG_PREFIX}-/") - fpm_build "$deppkg" "$outname" + case "$deppkg" in + httplib2|google-api-python-client) + # Work around 0640 permissions on some package files. + # See #7591 and #7991. + pyfpm_workdir=$(mktemp --tmpdir -d pyfpm-XXXXXX) && ( + set -e + cd "$pyfpm_workdir" + pip install "${PIP_DOWNLOAD_SWITCHES[@]}" --download . "$deppkg" + tar -xf "$deppkg"-*.tar* + cd "$deppkg"-*/ + "python$PYTHON2_VERSION" setup.py $DASHQ_UNLESS_DEBUG egg_info build + chmod -R go+rX . + set +e + # --iteration 2 provides an upgrade for previously built + # buggy packages. + fpm_build . "$outname" "" python "" --iteration 2 + # The upload step uses the package timestamp to determine + # whether it's new. --no-clobber plays nice with that. + mv --no-clobber "$outname"*.$FORMAT "$WORKSPACE/packages/$TARGET" + ) + if [ 0 != "$?" ]; then + echo "ERROR: $deppkg build process failed" + EXITCODE=1 + fi + if [ -n "$pyfpm_workdir" ]; then + rm -rf "$pyfpm_workdir" + fi + ;; + *) + fpm_build "$deppkg" "$outname" + ;; + esac done # Python 3 dependencies @@ -601,7 +440,7 @@ cd $WORKSPACE/packages/$TARGET # This is the complete package with vendor/bundle included. # It's big, so we do not build it by default. if [[ "$BUILD_BUNDLE_PACKAGES" != 0 ]]; then - declare -a COMMAND_ARR=("fpm" "--maintainer=Ward Vandewege " "--vendor='Curoverse, Inc.'" "--url='https://arvados.org'" "--description='Arvados API server - Arvados is a free and open source platform for big data science.'" "--license='GNU Affero General Public License, version 3.0'" "-s" "dir" "-t" "$FORMAT" "-n" "${PACKAGE_NAME}-with-bundle" "-v" "$API_VERSION" "-x" "var/www/arvados-api/current/tmp" "-x" "var/www/arvados-api/current/log" "-x" "var/www/arvados-api/current/vendor/cache/*" "-x" "var/www/arvados-api/current/coverage" "-x" "var/www/arvados-api/current/Capfile*" "-x" "var/www/arvados-api/current/config/deploy*" "--after-install=$RUN_BUILD_PACKAGES_PATH/arvados-api-server-extras/postinst.sh" "$WORKSPACE/services/api/=/var/www/arvados-api/current" "$RUN_BUILD_PACKAGES_PATH/arvados-api-server-extras/arvados-api-server-upgrade.sh=/usr/local/bin/arvados-api-server-upgrade.sh") + declare -a COMMAND_ARR=("fpm" "--maintainer=Ward Vandewege " "--vendor='Curoverse, Inc.'" "--url='https://arvados.org'" "--description='Arvados API server - Arvados is a free and open source platform for big data science.'" "--license='GNU Affero General Public License, version 3.0'" "-s" "dir" "-t" "$FORMAT" "-n" "${PACKAGE_NAME}-with-bundle" "-v" "$API_VERSION" "--iteration" "$(default_iteration "$PACKAGE_NAME" "$API_VERSION")" "-x" "var/www/arvados-api/current/tmp" "-x" "var/www/arvados-api/current/log" "-x" "var/www/arvados-api/current/vendor/cache/*" "-x" "var/www/arvados-api/current/coverage" "-x" "var/www/arvados-api/current/Capfile*" "-x" "var/www/arvados-api/current/config/deploy*" "--after-install=$RUN_BUILD_PACKAGES_PATH/arvados-api-server-extras/postinst.sh" "$WORKSPACE/services/api/=/var/www/arvados-api/current" "$RUN_BUILD_PACKAGES_PATH/arvados-api-server-extras/arvados-api-server-upgrade.sh=/usr/local/bin/arvados-api-server-upgrade.sh" "$WORKSPACE/agpl-3.0.txt=/var/www/arvados-api/current/agpl-3.0.txt") debug_echo -e "\n${COMMAND_ARR[@]}\n" @@ -611,7 +450,7 @@ if [[ "$BUILD_BUNDLE_PACKAGES" != 0 ]]; then fi # Build the 'bare' package without vendor/bundle. -declare -a COMMAND_ARR=("fpm" "--maintainer=Ward Vandewege " "--vendor='Curoverse, Inc.'" "--url='https://arvados.org'" "--description='Arvados API server - Arvados is a free and open source platform for big data science.'" "--license='GNU Affero General Public License, version 3.0'" "-s" "dir" "-t" "$FORMAT" "-n" "${PACKAGE_NAME}" "-v" "$API_VERSION" "-x" "var/www/arvados-api/current/tmp" "-x" "var/www/arvados-api/current/log" "-x" "var/www/arvados-api/current/vendor/bundle" "-x" "var/www/arvados-api/current/vendor/cache/*" "-x" "var/www/arvados-api/current/coverage" "-x" "var/www/arvados-api/current/Capfile*" "-x" "var/www/arvados-api/current/config/deploy*" "--after-install=$RUN_BUILD_PACKAGES_PATH/arvados-api-server-extras/postinst.sh" "$WORKSPACE/services/api/=/var/www/arvados-api/current" "$RUN_BUILD_PACKAGES_PATH/arvados-api-server-extras/arvados-api-server-upgrade.sh=/usr/local/bin/arvados-api-server-upgrade.sh") +declare -a COMMAND_ARR=("fpm" "--maintainer=Ward Vandewege " "--vendor='Curoverse, Inc.'" "--url='https://arvados.org'" "--description='Arvados API server - Arvados is a free and open source platform for big data science.'" "--license='GNU Affero General Public License, version 3.0'" "-s" "dir" "-t" "$FORMAT" "-n" "${PACKAGE_NAME}" "-v" "$API_VERSION" "--iteration" "$(default_iteration "$PACKAGE_NAME" "$API_VERSION")" "-x" "var/www/arvados-api/current/tmp" "-x" "var/www/arvados-api/current/log" "-x" "var/www/arvados-api/current/vendor/bundle" "-x" "var/www/arvados-api/current/vendor/cache/*" "-x" "var/www/arvados-api/current/coverage" "-x" "var/www/arvados-api/current/Capfile*" "-x" "var/www/arvados-api/current/config/deploy*" "--after-install=$RUN_BUILD_PACKAGES_PATH/arvados-api-server-extras/postinst.sh" "$WORKSPACE/services/api/=/var/www/arvados-api/current" "$RUN_BUILD_PACKAGES_PATH/arvados-api-server-extras/arvados-api-server-upgrade.sh=/usr/local/bin/arvados-api-server-upgrade.sh" "$WORKSPACE/agpl-3.0.txt=/var/www/arvados-api/current/agpl-3.0.txt") debug_echo -e "\n${COMMAND_ARR[@]}\n" @@ -661,7 +500,7 @@ cd $WORKSPACE/packages/$TARGET # It's big, so we do not build it by default. if [[ "$BUILD_BUNDLE_PACKAGES" != 0 ]]; then - declare -a COMMAND_ARR=("fpm" "--maintainer=Ward Vandewege " "--vendor='Curoverse, Inc.'" "--url='https://arvados.org'" "--description='Arvados Workbench - Arvados is a free and open source platform for big data science.'" "--license='GNU Affero General Public License, version 3.0'" "-s" "dir" "-t" "$FORMAT" "-n" "${PACKAGE_NAME}-with-bundle" "-v" "$WORKBENCH_VERSION" "-x" "var/www/arvados-workbench/current/log" "-x" "var/www/arvados-workbench/current/vendor/cache/*" "-x" "var/www/arvados-workbench/current/coverage" "-x" "var/www/arvados-workbench/current/Capfile*" "-x" "var/www/arvados-workbench/current/config/deploy*" "--after-install=$RUN_BUILD_PACKAGES_PATH/arvados-workbench-extras/postinst.sh" "$WORKSPACE/apps/workbench/=/var/www/arvados-workbench/current" "$RUN_BUILD_PACKAGES_PATH/arvados-workbench-extras/arvados-workbench-upgrade.sh=/usr/local/bin/arvados-workbench-upgrade.sh") + declare -a COMMAND_ARR=("fpm" "--maintainer=Ward Vandewege " "--vendor='Curoverse, Inc.'" "--url='https://arvados.org'" "--description='Arvados Workbench - Arvados is a free and open source platform for big data science.'" "--license='GNU Affero General Public License, version 3.0'" "-s" "dir" "-t" "$FORMAT" "-n" "${PACKAGE_NAME}-with-bundle" "-v" "$WORKBENCH_VERSION" "--iteration" "$(default_iteration "$PACKAGE_NAME" "$WORKBENCH_VERSION")" "-x" "var/www/arvados-workbench/current/log" "-x" "var/www/arvados-workbench/current/vendor/cache/*" "-x" "var/www/arvados-workbench/current/coverage" "-x" "var/www/arvados-workbench/current/Capfile*" "-x" "var/www/arvados-workbench/current/config/deploy*" "--after-install=$RUN_BUILD_PACKAGES_PATH/arvados-workbench-extras/postinst.sh" "$WORKSPACE/apps/workbench/=/var/www/arvados-workbench/current" "$RUN_BUILD_PACKAGES_PATH/arvados-workbench-extras/arvados-workbench-upgrade.sh=/usr/local/bin/arvados-workbench-upgrade.sh" "$WORKSPACE/agpl-3.0.txt=/var/www/arvados-workbench/current/agpl-3.0.txt") debug_echo -e "\n${COMMAND_ARR[@]}\n" @@ -672,7 +511,7 @@ fi # Build the 'bare' package without vendor/bundle. -declare -a COMMAND_ARR=("fpm" "--maintainer=Ward Vandewege " "--vendor='Curoverse, Inc.'" "--url='https://arvados.org'" "--description='Arvados Workbench - Arvados is a free and open source platform for big data science.'" "--license='GNU Affero General Public License, version 3.0'" "-s" "dir" "-t" "$FORMAT" "-n" "${PACKAGE_NAME}" "-v" "$WORKBENCH_VERSION" "-x" "var/www/arvados-workbench/current/log" "-x" "var/www/arvados-workbench/current/vendor/bundle" "-x" "var/www/arvados-workbench/current/vendor/cache/*" "-x" "var/www/arvados-workbench/current/coverage" "-x" "var/www/arvados-workbench/current/Capfile*" "-x" "var/www/arvados-workbench/current/config/deploy*" "--after-install=$RUN_BUILD_PACKAGES_PATH/arvados-workbench-extras/postinst.sh" "$WORKSPACE/apps/workbench/=/var/www/arvados-workbench/current" "$RUN_BUILD_PACKAGES_PATH/arvados-workbench-extras/arvados-workbench-upgrade.sh=/usr/local/bin/arvados-workbench-upgrade.sh") +declare -a COMMAND_ARR=("fpm" "--maintainer=Ward Vandewege " "--vendor='Curoverse, Inc.'" "--url='https://arvados.org'" "--description='Arvados Workbench - Arvados is a free and open source platform for big data science.'" "--license='GNU Affero General Public License, version 3.0'" "-s" "dir" "-t" "$FORMAT" "-n" "${PACKAGE_NAME}" "-v" "$WORKBENCH_VERSION" "--iteration" "$(default_iteration "$PACKAGE_NAME" "$WORKBENCH_VERSION")" "-x" "var/www/arvados-workbench/current/log" "-x" "var/www/arvados-workbench/current/vendor/bundle" "-x" "var/www/arvados-workbench/current/vendor/cache/*" "-x" "var/www/arvados-workbench/current/coverage" "-x" "var/www/arvados-workbench/current/Capfile*" "-x" "var/www/arvados-workbench/current/config/deploy*" "--after-install=$RUN_BUILD_PACKAGES_PATH/arvados-workbench-extras/postinst.sh" "$WORKSPACE/apps/workbench/=/var/www/arvados-workbench/current" "$RUN_BUILD_PACKAGES_PATH/arvados-workbench-extras/arvados-workbench-upgrade.sh=/usr/local/bin/arvados-workbench-upgrade.sh" "$WORKSPACE/agpl-3.0.txt=/var/www/arvados-workbench/current/agpl-3.0.txt") debug_echo -e "\n${COMMAND_ARR[@]}\n"