X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/e688effcdc8513fe5acc24116857c71edb306267..bebf531a2cb9cf08843d6ac4d4ae2238d58efc2b:/jenkins/run-build-packages.sh diff --git a/jenkins/run-build-packages.sh b/jenkins/run-build-packages.sh index d9d3d18fb0..84ada48bc6 100755 --- a/jenkins/run-build-packages.sh +++ b/jenkins/run-build-packages.sh @@ -1,183 +1,514 @@ #!/bin/bash -EXITCODE=0 -CALL_PRM=0 - -APTUSER=$1 -APTSERVER=$2 +. `dirname "$(readlink -f "$0")"`/run-library.sh +. `dirname "$(readlink -f "$0")"`/libcloud-pin -if [[ "$APTUSER" == '' ]]; then - echo "Syntax: $0 " - exit 1 -fi +read -rd "\000" helpmessage < " - exit 1 -fi +Syntax: + WORKSPACE=/path/to/arvados $(basename $0) [options] -source /etc/profile.d/rvm.sh -echo $WORKSPACE +Options: -# Build arvados GEM -echo "Build and publish ruby gem" -cd "$WORKSPACE" -cd sdk/ruby -# clean up old gems -rm -f arvados-*gem -gem build arvados.gemspec -# publish new gem -gem push arvados-*gem +--build-bundle-packages (default: false) + Build api server and workbench packages with vendor/bundle included +--debug + Output debug information (default: false) +--target + Distribution to build packages for (default: debian7) +--command + Build command to execute (defaults to the run command defined in the + Docker image) -# Build arvados-cli GEM -echo "Build and publish ruby gem" -cd "$WORKSPACE" -cd sdk/cli -# clean up old gems -rm -f arvados-cli*gem -gem build arvados-cli.gemspec -# publish new gem -gem push arvados-cli*gem +WORKSPACE=path Path to the Arvados source tree to build packages from -# Build arvados-python-client Python package -echo "Build and publish arvados-python-client package" -cd "$WORKSPACE" +EOF -GIT_HASH=`git log --format=format:%ct.%h -n1 .` +EXITCODE=0 +DEBUG=${ARVADOS_DEBUG:-0} +BUILD_BUNDLE_PACKAGES=0 +TARGET=debian7 +COMMAND= + +PARSEDOPTS=$(getopt --name "$0" --longoptions \ + help,build-bundle-packages,debug,target: \ + -- "" "$@") +if [ $? -ne 0 ]; then + exit 1 +fi -cd sdk/python +eval set -- "$PARSEDOPTS" +while [ $# -gt 0 ]; do + case "$1" in + --help) + echo >&2 "$helpmessage" + echo >&2 + exit 1 + ;; + --target) + TARGET="$2"; shift + ;; + --debug) + DEBUG=1 + ;; + --build-bundle-packages) + BUILD_BUNDLE_PACKAGES=1 + ;; + --command) + COMMAND="$2"; shift + ;; + --) + if [ $# -gt 1 ]; then + echo >&2 "$0: unrecognized argument '$2'. Try: $0 --help" + exit 1 + fi + ;; + esac + shift +done + +if [[ "$COMMAND" != "" ]]; then + COMMAND="/usr/local/rvm/bin/rvm-exec default bash /jenkins/$COMMAND --target $TARGET" +fi -# We mess with this file below, reset it here -git checkout setup.py +STDOUT_IF_DEBUG=/dev/null +STDERR_IF_DEBUG=/dev/null +DASHQ_UNLESS_DEBUG=-q +if [[ "$DEBUG" != 0 ]]; then + STDOUT_IF_DEBUG=/dev/stdout + STDERR_IF_DEBUG=/dev/stderr + DASHQ_UNLESS_DEBUG= +fi -# Make sure only to use sdist - that's the only format pip can deal with (sigh) -python setup.py egg_info -b ".$GIT_HASH" sdist upload +declare -a PYTHON_BACKPORTS PYTHON3_BACKPORTS + +PYTHON2_VERSION=2.7 +PYTHON3_VERSION=$(python3 -c 'import sys; print("{v.major}.{v.minor}".format(v=sys.version_info))') + +case "$TARGET" in + debian7) + FORMAT=deb + PYTHON2_PACKAGE=python$PYTHON2_VERSION + PYTHON2_PKG_PREFIX=python + PYTHON3_PACKAGE=python$PYTHON3_VERSION + 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 pykka six pyexecjs jsonschema \ + ciso8601 pycrypto backports.ssl_match_hostname pycurl llfuse) + PYTHON3_BACKPORTS=(docker-py six requests websocket-client) + ;; + debian8) + FORMAT=deb + PYTHON2_PACKAGE=python$PYTHON2_VERSION + PYTHON2_PKG_PREFIX=python + PYTHON3_PACKAGE=python$PYTHON3_VERSION + 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 pykka six pyexecjs jsonschema \ + ciso8601 pycrypto backports.ssl_match_hostname pycurl llfuse) + PYTHON3_BACKPORTS=(docker-py six requests websocket-client) + ;; + ubuntu1204) + FORMAT=deb + PYTHON2_PACKAGE=python$PYTHON2_VERSION + PYTHON2_PKG_PREFIX=python + PYTHON3_PACKAGE=python$PYTHON3_VERSION + 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 pykka six pyexecjs jsonschema \ + ciso8601 pycrypto backports.ssl_match_hostname pycurl llfuse) + PYTHON3_BACKPORTS=(docker-py six requests websocket-client) + ;; + ubuntu1404) + FORMAT=deb + PYTHON2_PACKAGE=python$PYTHON2_VERSION + PYTHON2_PKG_PREFIX=python + PYTHON3_PACKAGE=python$PYTHON3_VERSION + 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 pycurl backports.ssl_match_hostname) + PYTHON3_BACKPORTS=(docker-py requests websocket-client) + ;; + centos6) + FORMAT=rpm + PYTHON2_PACKAGE=$(rpm -qf "$(which python$PYTHON2_VERSION)" --queryformat '%{NAME}\n') + PYTHON2_PKG_PREFIX=$PYTHON2_PACKAGE + PYTHON3_PACKAGE=$(rpm -qf "$(which python$PYTHON3_VERSION)" --queryformat '%{NAME}\n') + 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 six pyexecjs jsonschema \ + ciso8601 pycrypto backports.ssl_match_hostname pycurl + python-daemon lockfile llfuse 'pbr<1.0') + PYTHON3_BACKPORTS=(docker-py six requests websocket-client) + export PYCURL_SSL_LIBRARY=nss + ;; + *) + echo -e "$0: Unknown target '$TARGET'.\n" >&2 + exit 1 + ;; +esac + + +if ! [[ -n "$WORKSPACE" ]]; then + echo >&2 "$helpmessage" + echo >&2 + echo >&2 "Error: WORKSPACE environment variable not set" + echo >&2 + exit 1 +fi -cd ../../services/fuse +# Test for fpm +fpm --version >/dev/null 2>&1 -# We mess with this file below, reset it here -git checkout setup.py +if [[ "$?" != 0 ]]; then + echo >&2 "$helpmessage" + echo >&2 + echo >&2 "Error: fpm not found" + echo >&2 + exit 1 +fi -# Make sure only to use sdist - that's the only format pip can deal with (sigh) -python setup.py egg_info -b ".$GIT_HASH" sdist upload +EASY_INSTALL2=$(find_easy_install -$PYTHON2_VERSION "") +EASY_INSTALL3=$(find_easy_install -$PYTHON3_VERSION 3) -# Build debs for everything +RUN_BUILD_PACKAGES_PATH="`dirname \"$0\"`" +RUN_BUILD_PACKAGES_PATH="`( cd \"$RUN_BUILD_PACKAGES_PATH\" && pwd )`" # absolutized and normalized +if [ -z "$RUN_BUILD_PACKAGES_PATH" ] ; then + # error; for some reason, the path is not accessible + # to the script (e.g. permissions re-evaled after suid) + exit 1 # fail +fi -build_and_scp_deb () { - PACKAGE=$1 - PACKAGE_NAME=$2 - # Put spaces in $3 and you will regret it. Despite the use of arrays below. - # Because, bash sucks. - VENDOR=${3// /_} - PACKAGE_TYPE=$4 - EXTRA_ARGUMENTS=$5 +debug_echo "$0 is running from $RUN_BUILD_PACKAGES_PATH" +debug_echo "Workspace is $WORKSPACE" - if [[ "$PACKAGE_NAME" == "" ]]; then - PACKAGE_NAME=$PACKAGE - fi +if [[ -f /etc/profile.d/rvm.sh ]]; then + source /etc/profile.d/rvm.sh + GEM="rvm-exec default gem" +else + GEM=gem +fi - if [[ "$PACKAGE_TYPE" == "" ]]; then - PACKAGE_TYPE='python' - fi +# Make all files world-readable -- jenkins runs with umask 027, and has checked +# out our git tree here +chmod o+r "$WORKSPACE" -R - COMMAND_ARR=("fpm" "-s" "$PACKAGE_TYPE" "-t" "deb") +# More cleanup - make sure all executables that we'll package are 755 +find -type d -name 'bin' |xargs -I {} find {} -type f |xargs -I {} chmod 755 {} - if [[ "$PACKAGE_NAME" != "$PACKAGE" ]]; then - COMMAND_ARR+=('-n' "$PACKAGE_NAME") - fi +# Now fix our umask to something better suited to building and publishing +# gems and packages +umask 0022 - if [[ "$VENDOR" != "" ]]; then - COMMAND_ARR+=('--vendor' "$VENDOR") - fi - for a in $EXTRA_ARGUMENTS; do - COMMAND_ARR+=("$a") - done +debug_echo "umask is" `umask` - COMMAND_ARR+=("$PACKAGE") +if [[ ! -d "$WORKSPACE/packages/$TARGET" ]]; then + mkdir -p $WORKSPACE/packages/$TARGET +fi - FPM_RESULTS=$(${COMMAND_ARR[@]}) - FPM_EXIT_CODE=$? - echo ${COMMAND_ARR[@]} - if [[ ! $FPM_RESULTS =~ "File already exists" ]]; then - if [[ "$FPM_EXIT_CODE" != "0" ]]; then - echo "Error building debian package for $1:\n $FPM_RESULTS" - else - scp -P2222 $PACKAGE_NAME*.deb $APTUSER@$APTSERVER:tmp/ - CALL_PRM=1 - fi - else - echo "Debian package for $1 exists, not rebuilding" - fi -} - -if [[ ! -d "$WORKSPACE/debs" ]]; then - mkdir -p $WORKSPACE/debs -fi - -# Make sure our destination directory on $APTSERVER exists - prm can delete it when invoked improperly -ssh -p2222 $APTUSER@$APTSERVER mkdir tmp - -# Keep -cd $WORKSPACE/services/keep -./go.sh install keep -cd $WORKSPACE/debs -build_and_scp_deb $WORKSPACE/services/keep/bin/keep=/usr/bin/keep keep 'Curoverse, Inc.' 'dir' "-v 0.1.$GIT_HASH" - -# Keep proxy - -# First build the keepclient library -cd $WORKSPACE/sdk/go -./go.sh install arvados.org/keepclient - -# Then keepproxy -cd $WORKSPACE/services/keep -./go.sh install arvados.org/keepproxy -cd $WORKSPACE/debs -build_and_scp_deb $WORKSPACE/services/keep/bin/keepproxy=/usr/bin/keepproxy keepproxy 'Curoverse, Inc.' 'dir' "-v 0.1.$GIT_HASH" - -# The crunchstat wrapper -cd $WORKSPACE/services/crunch/crunchstat -./go.sh install arvados.org/crunchstat -cd $WORKSPACE/debs -build_and_scp_deb $WORKSPACE/services/crunch/crunchstat/bin/crunchstat=/usr/bin/crunchstat crunchstat 'Curoverse, Inc.' 'dir' "-v 0.1.$GIT_HASH" +# Perl packages +debug_echo -e "\nPerl packages\n" -# The Python SDK -cd $WORKSPACE/sdk/python -sed -i'' -e "s:version='0.1':version='0.1.$GIT_HASH':" setup.py +cd "$WORKSPACE/sdk/perl" -cd $WORKSPACE/debs +if [[ -e Makefile ]]; then + make realclean >"$STDOUT_IF_DEBUG" +fi +find -maxdepth 1 \( -name 'MANIFEST*' -or -name "libarvados-perl*.$FORMAT" \) \ + -delete +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/" + +# Ruby gems +debug_echo -e "\nRuby gems\n" + +FPM_GEM_PREFIX=$($GEM environment gemdir) + +cd "$WORKSPACE/sdk/ruby" +handle_ruby_gem arvados + +cd "$WORKSPACE/sdk/cli" +handle_ruby_gem arvados-cli + +cd "$WORKSPACE/services/login-sync" +handle_ruby_gem arvados-login-sync + +# Python packages +debug_echo -e "\nPython packages\n" + +cd "$WORKSPACE/sdk/pam" +handle_python_package + +cd "$WORKSPACE/sdk/python" +handle_python_package + +cd "$WORKSPACE/sdk/cwl" +handle_python_package + +cd "$WORKSPACE/services/fuse" +handle_python_package + +cd "$WORKSPACE/services/nodemanager" +handle_python_package + +# arvados-src +( + set -e + + cd "$WORKSPACE" + 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" + + # go into detached-head state + git checkout $DASHQ_UNLESS_DEBUG "$COMMIT_HASH" + echo "$COMMIT_HASH" >git-commit.version + + cd "$SRC_BUILD_DIR" + PKG_VERSION=$(version_from_git) + 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 -rf "$SRC_BUILD_DIR" +) + +# Go binaries +export GOPATH=$(mktemp -d) +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 # (which would remove the python- prefix from the package name), because this # package is a dependency of arvados-fuse, and fpm can not omit the python- # prefix from only one of the dependencies of a package... Maybe I could # whip up a patch and send it upstream, but that will be for another day. Ward, # 2014-05-15 -build_and_scp_deb $WORKSPACE/sdk/python python-arvados-python-client 'Curoverse, Inc.' 'python' "-v 0.1.${GIT_HASH}" +cd $WORKSPACE/packages/$TARGET +rm -rf "$WORKSPACE/sdk/python/build" +fpm_build $WORKSPACE/sdk/python "${PYTHON2_PKG_PREFIX}-arvados-python-client" 'Curoverse, Inc.' 'python' "$(awk '($1 == "Version:"){print $2}' $WORKSPACE/sdk/python/arvados_python_client.egg-info/PKG-INFO)" "--url=https://arvados.org" "--description=The Arvados Python SDK" --deb-recommends=git + +# The PAM module +if [[ $TARGET =~ debian|ubuntu ]]; then + cd $WORKSPACE/packages/$TARGET + rm -rf "$WORKSPACE/sdk/pam/build" + fpm_build $WORKSPACE/sdk/pam libpam-arvados 'Curoverse, Inc.' 'python' "$(awk '($1 == "Version:"){print $2}' $WORKSPACE/sdk/pam/arvados_pam.egg-info/PKG-INFO)" "--url=https://arvados.org" "--description=PAM module for authenticating shell logins using Arvados API tokens" --depends libpam-python +fi # The FUSE driver -cd $WORKSPACE/services/fuse -sed -i'' -e "s:version='0.1':version='0.1.$GIT_HASH':" setup.py +# Please see comment about --no-python-fix-name above; we stay consistent and do +# not omit the python- prefix first. +cd $WORKSPACE/packages/$TARGET +rm -rf "$WORKSPACE/services/fuse/build" +fpm_build $WORKSPACE/services/fuse "${PYTHON2_PKG_PREFIX}-arvados-fuse" 'Curoverse, Inc.' 'python' "$(awk '($1 == "Version:"){print $2}' $WORKSPACE/services/fuse/arvados_fuse.egg-info/PKG-INFO)" "--url=https://arvados.org" "--description=The Keep FUSE driver" + +# The node manager +cd $WORKSPACE/packages/$TARGET +rm -rf "$WORKSPACE/services/nodemanager/build" +fpm_build $WORKSPACE/services/nodemanager arvados-node-manager 'Curoverse, Inc.' 'python' "$(awk '($1 == "Version:"){print $2}' $WORKSPACE/services/nodemanager/arvados_node_manager.egg-info/PKG-INFO)" "--url=https://arvados.org" "--description=The Arvados node manager" + +# The Docker image cleaner +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" + +# 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 +for deppkg in "${PYTHON_BACKPORTS[@]}"; do + outname=$(echo "$deppkg" | sed -e 's/^python-//' -e 's/[<=>].*//' -e 's/_/-/g' -e "s/^/${PYTHON2_PKG_PREFIX}-/") + case "$deppkg" in + httplib2) + # Work around 0640 permissions on some package files on Debian 8 + # and Ubuntu 14.04. See #7591. + httplib2_workdir=$(mktemp -d httplib2-XXXXXX) && ( + set -e + cd "$httplib2_workdir" + pip install --download . httplib2 + tar -xf httplib2-*.tar* + cd httplib2-*/ + "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. Arguments past $outname can be removed + # once we're building httplib2 > 0.9.2. + 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: httplib2 build process failed" + EXITCODE=1 + fi + if [ -n "$httplib2_workdir" ]; then + rm -rf "$httplib2_workdir" + fi + ;; + *) + fpm_build "$deppkg" "$outname" + ;; + esac +done + +# Python 3 dependencies +for deppkg in "${PYTHON3_BACKPORTS[@]}"; do + outname=$(echo "$deppkg" | sed -e 's/^python-//' -e 's/[<=>].*//' -e 's/_/-/g' -e "s/^/${PYTHON3_PKG_PREFIX}-/") + # The empty string is the vendor argument: these aren't Curoverse software. + fpm_build "$deppkg" "$outname" "" python3 +done + +# Build the API server package + +cd "$WORKSPACE/services/api" + +API_VERSION=$(version_from_git) +PACKAGE_NAME=arvados-api-server + +if [[ ! -d "$WORKSPACE/services/api/tmp" ]]; then + mkdir $WORKSPACE/services/api/tmp +fi -cd $WORKSPACE/debs +if [[ "$BUILD_BUNDLE_PACKAGES" != 0 ]]; then + bundle install --path vendor/bundle >"$STDOUT_IF_DEBUG" +fi -# Please seem comment about --no-python-fix-name above; we stay consistent and do -# not omit the python- prefix first. -build_and_scp_deb $WORKSPACE/services/fuse python-arvados-fuse 'Curoverse, Inc.' 'python' "-v 0.1.${GIT_HASH}" - -# A few dependencies -build_and_scp_deb python-gflags -build_and_scp_deb pyvcf -build_and_scp_deb google-api-python-client -build_and_scp_deb httplib2 -build_and_scp_deb ws4py -build_and_scp_deb virtualenv - -# Finally, publish the packages, if necessary -if [[ "$CALL_PRM" != "0" ]]; then - ssh -p2222 $APTUSER@$APTSERVER -t "cd /var/www/$APTSERVER; /usr/local/rvm/bin/rvm default do prm --type deb -p . --component main --release wheezy --arch amd64 -d /home/$APTUSER/tmp/ --gpg 1078ECD7" -else - echo "No new packages generated. No PRM run necessary." +/usr/bin/git rev-parse HEAD > git-commit.version + +cd $WORKSPACE/packages/$TARGET + +# Annoyingly, we require a database.yml file for rake assets:precompile to work. So for now, +# we do that in the upgrade script. +# TODO: add bogus database.yml file so we can precompile the assets and put them in the +# package. Then remove that database.yml file again. It has to be a valid file though. +#RAILS_ENV=production RAILS_GROUPS=assets bundle exec rake assets:precompile + +# 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") + + debug_echo -e "\n${COMMAND_ARR[@]}\n" + + FPM_RESULTS=$("${COMMAND_ARR[@]}") + FPM_EXIT_CODE=$? + fpm_verify $FPM_EXIT_CODE $FPM_RESULTS +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") + +debug_echo -e "\n${COMMAND_ARR[@]}\n" + +FPM_RESULTS=$("${COMMAND_ARR[@]}") +FPM_EXIT_CODE=$? +fpm_verify $FPM_EXIT_CODE $FPM_RESULTS + +# API server package build done + +# Build the workbench server package + +cd "$WORKSPACE/apps/workbench" + +WORKBENCH_VERSION=$(version_from_git) +PACKAGE_NAME=arvados-workbench + +if [[ ! -d "$WORKSPACE/apps/workbench/tmp" ]]; then + mkdir $WORKSPACE/apps/workbench/tmp fi +# We need to bundle to be ready even when we build a package without vendor directory +# because asset compilation requires it. +bundle install --path vendor/bundle >"$STDOUT_IF_DEBUG" + +/usr/bin/git rev-parse HEAD > git-commit.version + +# clear the tmp directory; the asset generation step will recreate tmp/cache/assets, +# and we want that in the package, so it's easier to not exclude the tmp directory +# from the package - empty it instead. +rm -rf $WORKSPACE/apps/workbench/tmp/* + +# Set up application.yml and production.rb so that asset precompilation works +\cp config/application.yml.example config/application.yml -f +\cp config/environments/production.rb.example config/environments/production.rb -f +sed -i 's/secret_token: ~/secret_token: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx/' config/application.yml + +RAILS_ENV=production RAILS_GROUPS=assets bundle exec rake assets:precompile >/dev/null + +if [[ "$?" != "0" ]]; then + echo "ERROR: Asset precompilation failed" + EXITCODE=1 +fi + +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 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") + + debug_echo -e "\n${COMMAND_ARR[@]}\n" + + FPM_RESULTS=$("${COMMAND_ARR[@]}") + FPM_EXIT_CODE=$? + fpm_verify $FPM_EXIT_CODE $FPM_RESULTS +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") + +debug_echo -e "\n${COMMAND_ARR[@]}\n" + +FPM_RESULTS=$("${COMMAND_ARR[@]}") +FPM_EXIT_CODE=$? +fpm_verify $FPM_EXIT_CODE $FPM_RESULTS + +# Workbench package build done +# clean up temporary GOPATH +rm -rf "$GOPATH" + +exit $EXITCODE