X-Git-Url: https://git.arvados.org/arvados-dev.git/blobdiff_plain/a4e96f869530a93545582f5a21ec0e6caa20bcd9..23391a8d819238b3b9f934c93331a0d96a8dec85:/jenkins/run-build-packages.sh diff --git a/jenkins/run-build-packages.sh b/jenkins/run-build-packages.sh index 4daf864..6970929 100755 --- a/jenkins/run-build-packages.sh +++ b/jenkins/run-build-packages.sh @@ -1,6 +1,7 @@ #!/bin/bash . `dirname "$(readlink -f "$0")"`/run-library.sh +. `dirname "$(readlink -f "$0")"`/libcloud-pin read -rd "\000" helpmessage <"$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" @@ -256,6 +254,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 @@ -270,6 +271,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" @@ -282,77 +285,107 @@ 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 -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" +# On older platforms we need to publish a backport of libfuse >=2.9.2, +# and we need to build and install it here in order to even build an +# llfuse package. 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 +if [[ $TARGET =~ ubuntu1204 ]]; then + # port libfuse 2.9.2 to Ubuntu 12.04 + LIBFUSE_DIR=$(mktemp -d) + ( + cd $LIBFUSE_DIR + # download fuse 2.9.2 ubuntu 14.04 source package + file="fuse_2.9.2.orig.tar.xz" && curl -L -o "${file}" "http://archive.ubuntu.com/ubuntu/pool/main/f/fuse/${file}" + file="fuse_2.9.2-4ubuntu4.14.04.1.debian.tar.xz" && curl -L -o "${file}" "http://archive.ubuntu.com/ubuntu/pool/main/f/fuse/${file}" + file="fuse_2.9.2-4ubuntu4.14.04.1.dsc" && curl -L -o "${file}" "http://archive.ubuntu.com/ubuntu/pool/main/f/fuse/${file}" + + # install dpkg-source and dpkg-buildpackage commands + apt-get install -y --no-install-recommends dpkg-dev + + # extract source and apply patches + dpkg-source -x fuse_2.9.2-4ubuntu4.14.04.1.dsc + rm -f fuse_2.9.2.orig.tar.xz fuse_2.9.2-4ubuntu4.14.04.1.debian.tar.xz fuse_2.9.2-4ubuntu4.14.04.1.dsc + + # add new version to changelog + cd fuse-2.9.2 + ( + echo "fuse (2.9.2-5) precise; urgency=low" + echo + echo " * Backported from trusty-security to precise" + echo + echo " -- Joshua Randall Thu, 4 Feb 2016 11:31:00 -0000" + echo + cat debian/changelog + ) > debian/changelog.new + mv debian/changelog.new debian/changelog + + # install build-deps and build + apt-get install -y --no-install-recommends debhelper dh-autoreconf libselinux-dev + dpkg-buildpackage -rfakeroot -b + ) + fpm_build "$LIBFUSE_DIR/fuse_2.9.2-5_amd64.deb" fuse "Ubuntu Developers" deb "2.9.2" --iteration 5 + fpm_build "$LIBFUSE_DIR/libfuse2_2.9.2-5_amd64.deb" libfuse2 "Ubuntu Developers" deb "2.9.2" --iteration 5 + fpm_build "$LIBFUSE_DIR/libfuse-dev_2.9.2-5_amd64.deb" libfuse-dev "Ubuntu Developers" deb "2.9.2" --iteration 5 + dpkg -i \ + "$WORKSPACE/packages/$TARGET/fuse_2.9.2-5_amd64.deb" \ + "$WORKSPACE/packages/$TARGET/libfuse2_2.9.2-5_amd64.deb" \ + "$WORKSPACE/packages/$TARGET/libfuse-dev_2.9.2-5_amd64.deb" + apt-get -y --no-install-recommends -f install + rm -rf $LIBFUSE_DIR +elif [[ $TARGET =~ centos6 ]]; then + # port fuse 2.9.2 to centos 6 + # install tools to build rpm from source + yum install -y rpm-build redhat-rpm-config + LIBFUSE_DIR=$(mktemp -d) + ( + cd "$LIBFUSE_DIR" + # download fuse 2.9.2 centos 7 source rpm + file="fuse-2.9.2-6.el7.src.rpm" && curl -L -o "${file}" "http://vault.centos.org/7.2.1511/os/Source/SPackages/${file}" + ( + # modify source rpm spec to remove conflict on filesystem version + mkdir -p /root/rpmbuild/SOURCES + cd /root/rpmbuild/SOURCES + rpm2cpio ${LIBFUSE_DIR}/fuse-2.9.2-6.el7.src.rpm | cpio -i + perl -pi -e 's/Conflicts:\s*filesystem.*//g' fuse.spec + ) + # build rpms from source + rpmbuild -bb /root/rpmbuild/SOURCES/fuse.spec + rm -f fuse-2.9.2-6.el7.src.rpm + # move built RPMs to LIBFUSE_DIR + mv "/root/rpmbuild/RPMS/x86_64/fuse-2.9.2-6.el6.x86_64.rpm" ${LIBFUSE_DIR}/ + mv "/root/rpmbuild/RPMS/x86_64/fuse-libs-2.9.2-6.el6.x86_64.rpm" ${LIBFUSE_DIR}/ + mv "/root/rpmbuild/RPMS/x86_64/fuse-devel-2.9.2-6.el6.x86_64.rpm" ${LIBFUSE_DIR}/ + rm -rf /root/rpmbuild + ) + fpm_build "$LIBFUSE_DIR/fuse-libs-2.9.2-6.el6.x86_64.rpm" fuse-libs "Centos Developers" rpm "2.9.2" --iteration 5 + fpm_build "$LIBFUSE_DIR/fuse-2.9.2-6.el6.x86_64.rpm" fuse "Centos Developers" rpm "2.9.2" --iteration 5 --no-auto-depends + fpm_build "$LIBFUSE_DIR/fuse-devel-2.9.2-6.el6.x86_64.rpm" fuse-devel "Centos Developers" rpm "2.9.2" --iteration 5 --no-auto-depends + yum install -y \ + "$WORKSPACE/packages/$TARGET/fuse-libs-2.9.2-5.x86_64.rpm" \ + "$WORKSPACE/packages/$TARGET/fuse-2.9.2-5.x86_64.rpm" \ + "$WORKSPACE/packages/$TARGET/fuse-devel-2.9.2-5.x86_64.rpm" fi -go get "git.curoverse.com/arvados.git/services/keepproxy" +# Go binaries 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" +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 @@ -365,6 +398,11 @@ 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 +# cwl-runner +cd $WORKSPACE/packages/$TARGET +rm -rf "$WORKSPACE/sdk/cwl/build" +fpm_build $WORKSPACE/sdk/cwl "${PYTHON2_PKG_PREFIX}-arvados-cwl-runner" 'Curoverse, Inc.' 'python' "$(awk '($1 == "Version:"){print $2}' $WORKSPACE/sdk/cwl/arvados_cwl_runner.egg-info/PKG-INFO)" "--url=https://arvados.org" "--description=The Arvados CWL runner" + # The PAM module if [[ $TARGET =~ debian|ubuntu ]]; then cd $WORKSPACE/packages/$TARGET @@ -389,10 +427,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 @@ -403,114 +496,47 @@ for deppkg in "${PYTHON3_BACKPORTS[@]}"; do 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 - - -if [[ "$BUILD_BUNDLE_PACKAGES" != 0 ]]; then - bundle install --path vendor/bundle >"$STDOUT_IF_DEBUG" -fi - -/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 +handle_rails_package arvados-api-server "$WORKSPACE/services/api" \ + "$WORKSPACE/agpl-3.0.txt" --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" # Build the workbench server package +( + set -e + cd "$WORKSPACE/apps/workbench" -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" + # 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 tmp + mkdir tmp -# 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 -# 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 -RAILS_ENV=production RAILS_GROUPS=assets bundle exec rake assets:precompile >/dev/null + # Remove generated configuration files so they don't go in the package. + rm config/application.yml config/environments/production.rb +) if [[ "$?" != "0" ]]; then echo "ERROR: Asset precompilation failed" EXITCODE=1 +else + handle_rails_package arvados-workbench "$WORKSPACE/apps/workbench" \ + "$WORKSPACE/agpl-3.0.txt" --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" 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"