3 . `dirname "$(readlink -f "$0")"`/run-library.sh
4 . `dirname "$(readlink -f "$0")"`/libcloud-pin
6 read -rd "\000" helpmessage <<EOF
7 $(basename $0): Build Arvados packages
10 WORKSPACE=/path/to/arvados $(basename $0) [options]
14 --build-bundle-packages (default: false)
15 Build api server and workbench packages with vendor/bundle included
17 Output debug information (default: false)
19 Distribution to build packages for (default: debian7)
21 Build command to execute (defaults to the run command defined in the
24 WORKSPACE=path Path to the Arvados source tree to build packages from
29 DEBUG=${ARVADOS_DEBUG:-0}
30 BUILD_BUNDLE_PACKAGES=0
34 PARSEDOPTS=$(getopt --name "$0" --longoptions \
35 help,build-bundle-packages,debug,target: \
41 eval set -- "$PARSEDOPTS"
42 while [ $# -gt 0 ]; do
45 echo >&2 "$helpmessage"
55 --build-bundle-packages)
56 BUILD_BUNDLE_PACKAGES=1
63 echo >&2 "$0: unrecognized argument '$2'. Try: $0 --help"
71 if [[ "$COMMAND" != "" ]]; then
72 COMMAND="/usr/local/rvm/bin/rvm-exec default bash /jenkins/$COMMAND --target $TARGET"
75 STDOUT_IF_DEBUG=/dev/null
76 STDERR_IF_DEBUG=/dev/null
78 if [[ "$DEBUG" != 0 ]]; then
79 STDOUT_IF_DEBUG=/dev/stdout
80 STDERR_IF_DEBUG=/dev/stderr
84 declare -a PYTHON_BACKPORTS PYTHON3_BACKPORTS
87 PYTHON3_VERSION=$(python3 -c 'import sys; print("{v.major}.{v.minor}".format(v=sys.version_info))')
92 PYTHON2_PACKAGE=python$PYTHON2_VERSION
93 PYTHON2_PKG_PREFIX=python
94 PYTHON3_PACKAGE=python$PYTHON3_VERSION
95 PYTHON3_PKG_PREFIX=python3
96 PYTHON_BACKPORTS=(python-gflags pyvcf google-api-python-client \
97 oauth2client pyasn1==0.1.7 pyasn1-modules==0.0.5 \
98 rsa uritemplate httplib2 ws4py \
99 pykka requests six pyexecjs jsonschema \
100 ciso8601 pycrypto backports.ssl_match_hostname pycurl llfuse)
101 PYTHON3_BACKPORTS=(docker-py six requests websocket-client)
105 PYTHON2_PACKAGE=python$PYTHON2_VERSION
106 PYTHON2_PKG_PREFIX=python
107 PYTHON3_PACKAGE=python$PYTHON3_VERSION
108 PYTHON3_PKG_PREFIX=python3
109 PYTHON_BACKPORTS=(python-gflags pyvcf google-api-python-client \
110 oauth2client pyasn1==0.1.7 pyasn1-modules==0.0.5 \
111 rsa uritemplate httplib2 ws4py \
112 pykka requests six pyexecjs jsonschema \
113 ciso8601 pycrypto backports.ssl_match_hostname pycurl llfuse)
114 PYTHON3_BACKPORTS=(docker-py six requests websocket-client)
118 PYTHON2_PACKAGE=python$PYTHON2_VERSION
119 PYTHON2_PKG_PREFIX=python
120 PYTHON3_PACKAGE=python$PYTHON3_VERSION
121 PYTHON3_PKG_PREFIX=python3
122 PYTHON_BACKPORTS=(python-gflags pyvcf google-api-python-client \
123 oauth2client pyasn1==0.1.7 pyasn1-modules==0.0.5 \
124 rsa uritemplate httplib2 ws4py \
125 pykka requests six pyexecjs jsonschema \
126 ciso8601 pycrypto backports.ssl_match_hostname pycurl llfuse)
127 PYTHON3_BACKPORTS=(docker-py six requests websocket-client)
131 PYTHON2_PACKAGE=python$PYTHON2_VERSION
132 PYTHON2_PKG_PREFIX=python
133 PYTHON3_PACKAGE=python$PYTHON3_VERSION
134 PYTHON3_PKG_PREFIX=python3
135 PYTHON_BACKPORTS=(pyasn1==0.1.7 pyvcf pyasn1-modules==0.0.5 llfuse ciso8601 \
136 google-api-python-client six uritemplate oauth2client httplib2 \
137 rsa pycurl backports.ssl_match_hostname)
138 PYTHON3_BACKPORTS=(docker-py requests websocket-client)
142 PYTHON2_PACKAGE=$(rpm -qf "$(which python$PYTHON2_VERSION)" --queryformat '%{NAME}\n')
143 PYTHON2_PKG_PREFIX=$PYTHON2_PACKAGE
144 PYTHON3_PACKAGE=$(rpm -qf "$(which python$PYTHON3_VERSION)" --queryformat '%{NAME}\n')
145 PYTHON3_PKG_PREFIX=$PYTHON3_PACKAGE
146 PYTHON_BACKPORTS=(python-gflags pyvcf google-api-python-client \
147 oauth2client pyasn1==0.1.7 pyasn1-modules==0.0.5 \
148 rsa uritemplate httplib2 ws4py \
149 pykka requests six pyexecjs jsonschema \
150 ciso8601 pycrypto backports.ssl_match_hostname pycurl
151 python-daemon lockfile llfuse)
152 PYTHON3_BACKPORTS=(docker-py six requests websocket-client)
153 export PYCURL_SSL_LIBRARY=nss
156 echo -e "$0: Unknown target '$TARGET'.\n" >&2
162 if ! [[ -n "$WORKSPACE" ]]; then
163 echo >&2 "$helpmessage"
165 echo >&2 "Error: WORKSPACE environment variable not set"
171 fpm --version >/dev/null 2>&1
173 if [[ "$?" != 0 ]]; then
174 echo >&2 "$helpmessage"
176 echo >&2 "Error: fpm not found"
181 EASY_INSTALL2=$(find_easy_install -$PYTHON2_VERSION "")
182 EASY_INSTALL3=$(find_easy_install -$PYTHON3_VERSION 3)
184 RUN_BUILD_PACKAGES_PATH="`dirname \"$0\"`"
185 RUN_BUILD_PACKAGES_PATH="`( cd \"$RUN_BUILD_PACKAGES_PATH\" && pwd )`" # absolutized and normalized
186 if [ -z "$RUN_BUILD_PACKAGES_PATH" ] ; then
187 # error; for some reason, the path is not accessible
188 # to the script (e.g. permissions re-evaled after suid)
192 debug_echo "$0 is running from $RUN_BUILD_PACKAGES_PATH"
193 debug_echo "Workspace is $WORKSPACE"
195 if [[ -f /etc/profile.d/rvm.sh ]]; then
196 source /etc/profile.d/rvm.sh
197 GEM="rvm-exec default gem"
202 # Make all files world-readable -- jenkins runs with umask 027, and has checked
203 # out our git tree here
204 chmod o+r "$WORKSPACE" -R
206 # More cleanup - make sure all executables that we'll package are 755
207 find -type d -name 'bin' |xargs -I {} find {} -type f |xargs -I {} chmod 755 {}
209 # Now fix our umask to something better suited to building and publishing
213 debug_echo "umask is" `umask`
215 if [[ ! -d "$WORKSPACE/packages/$TARGET" ]]; then
216 mkdir -p $WORKSPACE/packages/$TARGET
220 debug_echo -e "\nPerl packages\n"
222 cd "$WORKSPACE/sdk/perl"
224 if [[ -e Makefile ]]; then
225 make realclean >"$STDOUT_IF_DEBUG"
227 find -maxdepth 1 \( -name 'MANIFEST*' -or -name "libarvados-perl*.$FORMAT" \) \
231 perl Makefile.PL INSTALL_BASE=install >"$STDOUT_IF_DEBUG" && \
232 make install INSTALLDIRS=perl >"$STDOUT_IF_DEBUG" && \
233 fpm_build install/lib/=/usr/share libarvados-perl \
234 "Curoverse, Inc." dir "$(version_from_git)" install/man/=/usr/share/man && \
235 mv libarvados-perl*.$FORMAT "$WORKSPACE/packages/$TARGET/"
238 debug_echo -e "\nRuby gems\n"
240 FPM_GEM_PREFIX=$($GEM environment gemdir)
242 cd "$WORKSPACE/sdk/ruby"
243 handle_ruby_gem arvados
245 cd "$WORKSPACE/sdk/cli"
246 handle_ruby_gem arvados-cli
248 cd "$WORKSPACE/services/login-sync"
249 handle_ruby_gem arvados-login-sync
252 debug_echo -e "\nPython packages\n"
254 cd "$WORKSPACE/sdk/pam"
255 handle_python_package
257 cd "$WORKSPACE/sdk/python"
258 handle_python_package
260 cd "$WORKSPACE/services/fuse"
261 handle_python_package
263 cd "$WORKSPACE/services/nodemanager"
264 handle_python_package
271 COMMIT_HASH=$(format_last_commit_here "%H")
273 SRC_BUILD_DIR=$(mktemp -d)
274 git clone $DASHQ_UNLESS_DEBUG "$WORKSPACE/.git" "$SRC_BUILD_DIR"
277 # go into detached-head state
278 git checkout $DASHQ_UNLESS_DEBUG "$COMMIT_HASH"
279 echo "$COMMIT_HASH" >git-commit.version
282 PKG_VERSION=$(version_from_git)
283 cd $WORKSPACE/packages/$TARGET
284 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"
286 rm -r "$SRC_BUILD_DIR"
290 export GOPATH=$(mktemp -d)
291 mkdir -p "$GOPATH/src/git.curoverse.com"
292 ln -sfn "$WORKSPACE" "$GOPATH/src/git.curoverse.com/arvados.git"
295 cd "$GOPATH/src/git.curoverse.com/arvados.git/services/keepstore"
296 PKG_VERSION=$(version_from_git)
297 go get "git.curoverse.com/arvados.git/services/keepstore"
298 cd $WORKSPACE/packages/$TARGET
299 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"
302 cd "$GOPATH/src/git.curoverse.com/arvados.git/sdk/go"
303 GO_SDK_VERSION=$(version_from_git)
304 GO_SDK_TIMESTAMP=$(timestamp_from_git)
307 cd "$GOPATH/src/git.curoverse.com/arvados.git/services/keepproxy"
308 KEEPPROXY_VERSION=$(version_from_git)
309 KEEPPROXY_TIMESTAMP=$(timestamp_from_git)
311 if [[ "$GO_SDK_TIMESTAMP" -gt "$KEEPPROXY_TIMESTAMP" ]]; then
312 PKG_VERSION=$GO_SDK_VERSION
314 PKG_VERSION=$KEEPPROXY_VERSION
317 go get "git.curoverse.com/arvados.git/services/keepproxy"
318 cd $WORKSPACE/packages/$TARGET
319 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"
322 cd "$GOPATH/src/git.curoverse.com/arvados.git/services/datamanager"
323 DATAMANAGER_VERSION=$(version_from_git)
324 DATAMANAGER_TIMESTAMP=$(timestamp_from_git)
326 if [[ "$GO_SDK_TIMESTAMP" -gt "$DATAMANAGER_TIMESTAMP" ]]; then
327 PKG_VERSION=$GO_SDK_VERSION
329 PKG_VERSION=$DATAMANAGER_VERSION
332 go get "git.curoverse.com/arvados.git/services/datamanager"
333 cd $WORKSPACE/packages/$TARGET
334 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."
337 cd "$GOPATH/src/git.curoverse.com/arvados.git/services/arv-git-httpd"
338 ARVGITHTTPD_VERSION=$(version_from_git)
339 ARVGITHTTPD_TIMESTAMP=$(timestamp_from_git)
341 if [[ "$GO_SDK_TIMESTAMP" -gt "$ARVGITHTTPD_TIMESTAMP" ]]; then
342 PKG_VERSION=$GO_SDK_VERSION
344 PKG_VERSION=$ARVGITHTTPD_VERSION
347 go get "git.curoverse.com/arvados.git/services/arv-git-httpd"
348 cd $WORKSPACE/packages/$TARGET
349 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."
352 cd "$GOPATH/src/git.curoverse.com/arvados.git/services/crunchstat"
353 PKG_VERSION=$(version_from_git)
354 go get "git.curoverse.com/arvados.git/services/crunchstat"
355 cd $WORKSPACE/packages/$TARGET
356 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"
359 # Please resist the temptation to add --no-python-fix-name to the fpm call here
360 # (which would remove the python- prefix from the package name), because this
361 # package is a dependency of arvados-fuse, and fpm can not omit the python-
362 # prefix from only one of the dependencies of a package... Maybe I could
363 # whip up a patch and send it upstream, but that will be for another day. Ward,
365 cd $WORKSPACE/packages/$TARGET
366 rm -rf "$WORKSPACE/sdk/python/build"
367 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
370 if [[ $TARGET =~ debian|ubuntu ]]; then
371 cd $WORKSPACE/packages/$TARGET
372 rm -rf "$WORKSPACE/sdk/pam/build"
373 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
377 # Please see comment about --no-python-fix-name above; we stay consistent and do
378 # not omit the python- prefix first.
379 cd $WORKSPACE/packages/$TARGET
380 rm -rf "$WORKSPACE/services/fuse/build"
381 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"
384 cd $WORKSPACE/packages/$TARGET
385 rm -rf "$WORKSPACE/services/nodemanager/build"
386 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"
388 # The Docker image cleaner
389 cd $WORKSPACE/packages/$TARGET
390 rm -rf "$WORKSPACE/services/dockercleaner/build"
391 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"
394 LIBCLOUD_DIR=$(mktemp -d)
397 git clone $DASHQ_UNLESS_DEBUG https://github.com/curoverse/libcloud.git .
398 git checkout apache-libcloud-$LIBCLOUD_PIN
399 # libcloud is absurdly noisy without -q, so force -q here
400 OLD_DASHQ_UNLESS_DEBUG=$DASHQ_UNLESS_DEBUG
401 DASHQ_UNLESS_DEBUG=-q
402 handle_python_package
403 DASHQ_UNLESS_DEBUG=$OLD_DASHQ_UNLESS_DEBUG
405 fpm_build $LIBCLOUD_DIR "$PYTHON2_PKG_PREFIX"-apache-libcloud
409 for deppkg in "${PYTHON_BACKPORTS[@]}"; do
410 outname=$(echo "$deppkg" | sed -e 's/^python-//' -e 's/[<=>].*//' -e 's/_/-/g' -e "s/^/${PYTHON2_PKG_PREFIX}-/")
411 fpm_build "$deppkg" "$outname"
414 # Python 3 dependencies
415 for deppkg in "${PYTHON3_BACKPORTS[@]}"; do
416 outname=$(echo "$deppkg" | sed -e 's/^python-//' -e 's/[<=>].*//' -e 's/_/-/g' -e "s/^/${PYTHON3_PKG_PREFIX}-/")
417 # The empty string is the vendor argument: these aren't Curoverse software.
418 fpm_build "$deppkg" "$outname" "" python3
421 # Build the API server package
423 cd "$WORKSPACE/services/api"
425 API_VERSION=$(version_from_git)
426 PACKAGE_NAME=arvados-api-server
428 if [[ ! -d "$WORKSPACE/services/api/tmp" ]]; then
429 mkdir $WORKSPACE/services/api/tmp
433 if [[ "$BUILD_BUNDLE_PACKAGES" != 0 ]]; then
434 bundle install --path vendor/bundle >"$STDOUT_IF_DEBUG"
437 /usr/bin/git rev-parse HEAD > git-commit.version
439 cd $WORKSPACE/packages/$TARGET
441 # Annoyingly, we require a database.yml file for rake assets:precompile to work. So for now,
442 # we do that in the upgrade script.
443 # TODO: add bogus database.yml file so we can precompile the assets and put them in the
444 # package. Then remove that database.yml file again. It has to be a valid file though.
445 #RAILS_ENV=production RAILS_GROUPS=assets bundle exec rake assets:precompile
447 # This is the complete package with vendor/bundle included.
448 # It's big, so we do not build it by default.
449 if [[ "$BUILD_BUNDLE_PACKAGES" != 0 ]]; then
450 declare -a COMMAND_ARR=("fpm" "--maintainer=Ward Vandewege <ward@curoverse.com>" "--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")
452 debug_echo -e "\n${COMMAND_ARR[@]}\n"
454 FPM_RESULTS=$("${COMMAND_ARR[@]}")
456 fpm_verify $FPM_EXIT_CODE $FPM_RESULTS
459 # Build the 'bare' package without vendor/bundle.
460 declare -a COMMAND_ARR=("fpm" "--maintainer=Ward Vandewege <ward@curoverse.com>" "--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")
462 debug_echo -e "\n${COMMAND_ARR[@]}\n"
464 FPM_RESULTS=$("${COMMAND_ARR[@]}")
466 fpm_verify $FPM_EXIT_CODE $FPM_RESULTS
468 # API server package build done
470 # Build the workbench server package
472 cd "$WORKSPACE/apps/workbench"
474 WORKBENCH_VERSION=$(version_from_git)
475 PACKAGE_NAME=arvados-workbench
477 if [[ ! -d "$WORKSPACE/apps/workbench/tmp" ]]; then
478 mkdir $WORKSPACE/apps/workbench/tmp
481 # We need to bundle to be ready even when we build a package without vendor directory
482 # because asset compilation requires it.
483 bundle install --path vendor/bundle >"$STDOUT_IF_DEBUG"
485 /usr/bin/git rev-parse HEAD > git-commit.version
487 # clear the tmp directory; the asset generation step will recreate tmp/cache/assets,
488 # and we want that in the package, so it's easier to not exclude the tmp directory
489 # from the package - empty it instead.
490 rm -rf $WORKSPACE/apps/workbench/tmp/*
492 # Set up application.yml and production.rb so that asset precompilation works
493 \cp config/application.yml.example config/application.yml -f
494 \cp config/environments/production.rb.example config/environments/production.rb -f
495 sed -i 's/secret_token: ~/secret_token: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx/' config/application.yml
497 RAILS_ENV=production RAILS_GROUPS=assets bundle exec rake assets:precompile >/dev/null
499 if [[ "$?" != "0" ]]; then
500 echo "ERROR: Asset precompilation failed"
504 cd $WORKSPACE/packages/$TARGET
506 # This is the complete package with vendor/bundle included.
507 # It's big, so we do not build it by default.
508 if [[ "$BUILD_BUNDLE_PACKAGES" != 0 ]]; then
510 declare -a COMMAND_ARR=("fpm" "--maintainer=Ward Vandewege <ward@curoverse.com>" "--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")
512 debug_echo -e "\n${COMMAND_ARR[@]}\n"
514 FPM_RESULTS=$("${COMMAND_ARR[@]}")
516 fpm_verify $FPM_EXIT_CODE $FPM_RESULTS
519 # Build the 'bare' package without vendor/bundle.
521 declare -a COMMAND_ARR=("fpm" "--maintainer=Ward Vandewege <ward@curoverse.com>" "--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")
523 debug_echo -e "\n${COMMAND_ARR[@]}\n"
525 FPM_RESULTS=$("${COMMAND_ARR[@]}")
527 fpm_verify $FPM_EXIT_CODE $FPM_RESULTS
529 # Workbench package build done
530 # clean up temporary GOPATH