2 # Copyright (C) The Arvados Authors. All rights reserved.
4 # SPDX-License-Identifier: AGPL-3.0
6 # A library of functions shared by the various scripts in this directory.
8 # This is the timestamp about when we merged changed to include licenses
9 # with Arvados packages. We use it as a heuristic to add revisions for
11 LICENSE_PACKAGE_TS=20151208015500
13 if [[ -z "$ARVADOS_BUILDING_VERSION" ]]; then
14 RAILS_PACKAGE_ITERATION=8
16 RAILS_PACKAGE_ITERATION="$ARVADOS_BUILDING_ITERATION"
20 echo "$@" >"$STDOUT_IF_DEBUG"
24 for version_suffix in "$@"; do
25 if "easy_install$version_suffix" --version >/dev/null 2>&1; then
26 echo "easy_install$version_suffix"
33 Error: easy_install$1 (from Python setuptools module) not found
39 format_last_commit_here() {
40 local format="$1"; shift
41 TZ=UTC git log -n1 --first-parent "--format=format:$format" .
45 # Output the version being built, or if we're building a
46 # dev/prerelease, output a version number based on the git log for
47 # the current working directory.
48 if [[ -n "$ARVADOS_BUILDING_VERSION" ]]; then
49 echo "$ARVADOS_BUILDING_VERSION"
53 local git_ts git_hash prefix
54 if [[ -n "$1" ]] ; then
60 declare $(format_last_commit_here "git_ts=%ct git_hash=%h")
61 echo "${prefix}.$(date -ud "@$git_ts" +%Y%m%d%H%M%S).$git_hash"
64 nohash_version_from_git() {
65 if [[ -n "$ARVADOS_BUILDING_VERSION" ]]; then
66 echo "$ARVADOS_BUILDING_VERSION"
69 version_from_git $1 | cut -d. -f1-3
72 timestamp_from_git() {
73 format_last_commit_here "%ct"
76 handle_python_package () {
77 # This function assumes the current working directory is the python package directory
78 if [ -n "$(find dist -name "*-$(nohash_version_from_git).tar.gz" -print -quit)" ]; then
79 # This package doesn't need rebuilding.
82 # Make sure only to use sdist - that's the only format pip can deal with (sigh)
83 python setup.py $DASHQ_UNLESS_DEBUG sdist
87 local gem_name="$1"; shift
88 local gem_version="$(nohash_version_from_git)"
89 local gem_src_dir="$(pwd)"
91 if [[ -n "$ONLY_BUILD" ]] && [[ "$gem_name" != "$ONLY_BUILD" ]] ; then
95 if ! [[ -e "${gem_name}-${gem_version}.gem" ]]; then
96 find -maxdepth 1 -name "${gem_name}-*.gem" -delete
98 # -q appears to be broken in gem version 2.2.2
99 $GEM build "$gem_name.gemspec" $DASHQ_UNLESS_DEBUG >"$STDOUT_IF_DEBUG" 2>"$STDERR_IF_DEBUG"
103 # Usage: package_go_binary services/foo arvados-foo "Compute foo to arbitrary precision"
104 package_go_binary() {
105 local src_path="$1"; shift
106 local prog="$1"; shift
107 local description="$1"; shift
108 local license_file="${1:-agpl-3.0.txt}"; shift
110 if [[ -n "$ONLY_BUILD" ]] && [[ "$prog" != "$ONLY_BUILD" ]] ; then
114 debug_echo "package_go_binary $src_path as $prog"
116 local basename="${src_path##*/}"
118 mkdir -p "$GOPATH/src/git.curoverse.com"
119 ln -sfn "$WORKSPACE" "$GOPATH/src/git.curoverse.com/arvados.git"
120 (cd "$GOPATH/src/git.curoverse.com/arvados.git" && "$GOPATH/bin/govendor" sync -v)
122 cd "$GOPATH/src/git.curoverse.com/arvados.git/$src_path"
123 local version="$(version_from_git)"
124 local timestamp="$(timestamp_from_git)"
126 # Update the version number and build a new package if the vendor
127 # bundle has changed, or the command imports anything from the
128 # Arvados SDK and the SDK has changed.
129 declare -a checkdirs=(vendor)
130 if grep -qr git.curoverse.com/arvados .; then
132 if [[ "$prog" -eq "crunch-dispatch-slurm" ]]; then
133 checkdirs+=(lib/dispatchcloud)
136 for dir in ${checkdirs[@]}; do
137 cd "$GOPATH/src/git.curoverse.com/arvados.git/$dir"
138 ts="$(timestamp_from_git)"
139 if [[ "$ts" -gt "$timestamp" ]]; then
140 version=$(version_from_git)
145 cd $WORKSPACE/packages/$TARGET
146 test_package_presence $prog $version go
148 if [[ "$?" != "0" ]]; then
152 go get -ldflags "-X main.version=${version}" "git.curoverse.com/arvados.git/$src_path"
155 systemd_unit="$WORKSPACE/${src_path}/${prog}.service"
156 if [[ -e "${systemd_unit}" ]]; then
158 --after-install "${WORKSPACE}/build/go-python-package-scripts/postinst"
159 --before-remove "${WORKSPACE}/build/go-python-package-scripts/prerm"
160 "${systemd_unit}=/lib/systemd/system/${prog}.service")
162 switches+=("$WORKSPACE/${license_file}=/usr/share/doc/$prog/${license_file}")
164 fpm_build "$GOPATH/bin/${basename}=/usr/bin/${prog}" "${prog}" 'Curoverse, Inc.' dir "${version}" "--url=https://arvados.org" "--license=GNU Affero General Public License, version 3.0" "--description=${description}" "${switches[@]}"
167 default_iteration() {
168 if [[ -n "$ARVADOS_BUILDING_VERSION" ]]; then
169 echo "$ARVADOS_BUILDING_ITERATION"
172 local package_name="$1"; shift
173 local package_version="$1"; shift
174 local package_type="$1"; shift
176 if [[ $package_version =~ ^0\.1\.([0-9]{14})(\.|$) ]] && \
177 [[ ${BASH_REMATCH[1]} -le $LICENSE_PACKAGE_TS ]]; then
180 if [[ $package_type =~ ^python ]]; then
181 # Fix --iteration for #9242.
187 _build_rails_package_scripts() {
188 local pkgname="$1"; shift
189 local destdir="$1"; shift
190 local srcdir="$RUN_BUILD_PACKAGES_PATH/rails-package-scripts"
191 for scriptname in postinst prerm postrm; do
192 cat "$srcdir/$pkgname.sh" "$srcdir/step2.sh" "$srcdir/$scriptname.sh" \
193 >"$destdir/$scriptname" || return $?
197 test_rails_package_presence() {
198 local pkgname="$1"; shift
199 local srcdir="$1"; shift
201 if [[ -n "$ONLY_BUILD" ]] && [[ "$pkgname" != "$ONLY_BUILD" ]] ; then
209 local version="$(version_from_git)"
213 test_package_presence $pkgname $version rails "$RAILS_PACKAGE_ITERATION"
216 test_package_presence() {
217 local pkgname="$1"; shift
218 local version="$1"; shift
219 local pkgtype="$1"; shift
220 local iteration="$1"; shift
221 local arch="$1"; shift
223 if [[ -n "$ONLY_BUILD" ]] && [[ "$pkgname" != "$ONLY_BUILD" ]] ; then
227 if [[ "$iteration" == "" ]]; then
228 iteration="$(default_iteration "$pkgname" "$version" "$pkgtype")"
231 if [[ "$arch" == "" ]]; then
232 rpm_architecture="x86_64"
233 deb_architecture="amd64"
235 if [[ "$pkgtype" =~ ^(python|python3)$ ]]; then
236 rpm_architecture="noarch"
237 deb_architecture="all"
240 if [[ "$pkgtype" =~ ^(src)$ ]]; then
241 rpm_architecture="noarch"
242 deb_architecture="all"
245 # These python packages have binary components
246 if [[ "$pkgname" =~ (ruamel|ciso|pycrypto|pyyaml) ]]; then
247 rpm_architecture="x86_64"
248 deb_architecture="amd64"
251 rpm_architecture=$arch
252 deb_architecture=$arch
255 if [[ "$FORMAT" == "deb" ]]; then
256 local complete_pkgname="${pkgname}_$version${iteration:+-$iteration}_$deb_architecture.deb"
258 # rpm packages get iteration 1 if we don't supply one
259 iteration=${iteration:-1}
260 local complete_pkgname="$pkgname-$version-${iteration}.$rpm_architecture.rpm"
263 # See if we can skip building the package, only if it already exists in the
264 # processed/ directory. If so, move it back to the packages directory to make
265 # sure it gets picked up by the test and/or upload steps.
266 if [[ -e "processed/$complete_pkgname" ]]; then
267 echo "Package $complete_pkgname exists, not rebuilding!"
268 mv processed/$complete_pkgname .
271 echo "Package $complete_pkgname not found, building"
276 handle_rails_package() {
277 local pkgname="$1"; shift
279 if [[ -n "$ONLY_BUILD" ]] && [[ "$pkgname" != "$ONLY_BUILD" ]] ; then
282 local srcdir="$1"; shift
284 local license_path="$1"; shift
285 local version="$(version_from_git)"
286 local scripts_dir="$(mktemp --tmpdir -d "$pkgname-XXXXXXXX.scripts")" && \
289 _build_rails_package_scripts "$pkgname" "$scripts_dir"
292 git rev-parse HEAD >git-commit.version
295 if [[ 0 != "$?" ]] || ! cd "$WORKSPACE/packages/$TARGET"; then
296 echo "ERROR: $pkgname package prep failed" >&2
297 rm -rf "$scripts_dir"
301 local railsdir="/var/www/${pkgname%-server}/current"
302 local -a pos_args=("$srcdir/=$railsdir" "$pkgname" "Curoverse, Inc." dir "$version")
303 local license_arg="$license_path=$railsdir/$(basename "$license_path")"
304 local -a switches=(--after-install "$scripts_dir/postinst"
305 --before-remove "$scripts_dir/prerm"
306 --after-remove "$scripts_dir/postrm")
307 if [[ -z "$ARVADOS_BUILDING_VERSION" ]]; then
308 switches+=(--iteration $RAILS_PACKAGE_ITERATION)
310 # For some reason fpm excludes need to not start with /.
311 local exclude_root="${railsdir#/}"
312 # .git and packages are for the SSO server, which is built from its
314 local -a exclude_list=(.git packages tmp log coverage Capfile\* \
315 config/deploy\* config/application.yml)
316 # for arvados-workbench, we need to have the (dummy) config/database.yml in the package
317 if [[ "$pkgname" != "arvados-workbench" ]]; then
318 exclude_list+=('config/database.yml')
320 for exclude in ${exclude_list[@]}; do
321 switches+=(-x "$exclude_root/$exclude")
323 fpm_build "${pos_args[@]}" "${switches[@]}" \
324 -x "$exclude_root/vendor/cache-*" \
325 -x "$exclude_root/vendor/bundle" "$@" "$license_arg"
326 rm -rf "$scripts_dir"
329 # Build packages for everything
331 # The package source. Depending on the source type, this can be a
332 # path, or the name of the package in an upstream repository (e.g.,
336 # The name of the package to build.
339 # Optional: the vendor of the package. Should be "Curoverse, Inc." for
340 # packages of our own software. Passed to fpm --vendor.
343 # The type of source package. Passed to fpm -s. Default "python".
344 PACKAGE_TYPE=${1:-python}
346 # Optional: the package version number. Passed to fpm -v.
350 if [[ -n "$ONLY_BUILD" ]] && [[ "$PACKAGE_NAME" != "$ONLY_BUILD" ]] && [[ "$PACKAGE" != "$ONLY_BUILD" ]] ; then
354 local default_iteration_value="$(default_iteration "$PACKAGE" "$VERSION" "$PACKAGE_TYPE")"
357 case "$PACKAGE_TYPE" in
359 # All Arvados Python2 packages depend on Python 2.7.
360 # Make sure we build with that for consistency.
362 set -- "$@" --python-bin python2.7 \
363 --python-easyinstall "$EASY_INSTALL2" \
364 --python-package-name-prefix "$PYTHON2_PKG_PREFIX" \
365 --prefix "$PYTHON2_PREFIX" \
366 --python-install-lib "$PYTHON2_INSTALL_LIB" \
367 --python-install-data . \
368 --exclude "${PYTHON2_INSTALL_LIB#/}/tests" \
369 --depends "$PYTHON2_PACKAGE"
372 # fpm does not actually support a python3 package type. Instead
373 # we recognize it as a convenience shortcut to add several
374 # necessary arguments to fpm's command line later, after we're
375 # done handling positional arguments.
378 set -- "$@" --python-bin python3 \
379 --python-easyinstall "$EASY_INSTALL3" \
380 --python-package-name-prefix "$PYTHON3_PKG_PREFIX" \
381 --prefix "$PYTHON3_PREFIX" \
382 --python-install-lib "$PYTHON3_INSTALL_LIB" \
383 --python-install-data . \
384 --exclude "${PYTHON3_INSTALL_LIB#/}/tests" \
385 --depends "$PYTHON3_PACKAGE"
389 declare -a COMMAND_ARR=("fpm" "--maintainer=Ward Vandewege <ward@curoverse.com>" "-s" "$PACKAGE_TYPE" "-t" "$FORMAT")
390 if [ python = "$PACKAGE_TYPE" ] && [ deb = "$FORMAT" ]; then
391 # Dependencies are built from setup.py. Since setup.py will never
392 # refer to Debian package iterations, it doesn't make sense to
393 # enforce those in the .deb dependencies.
394 COMMAND_ARR+=(--deb-ignore-iteration-in-dependencies)
397 # 12271 - As FPM-generated packages don't include scripts by default, the
398 # packages cleanup on upgrade depends on files being listed on the %files
399 # section in the generated SPEC files. To remove DIRECTORIES, they need to
400 # be listed in that sectiontoo, so we need to add this parameter to properly
401 # remove lingering dirs. But this only works for python2: if used on
402 # python33, it includes dirs like /opt/rh/python33 that belong to
404 if [[ "$FORMAT" = rpm ]] && [[ "$python" = python2.7 ]]; then
405 COMMAND_ARR+=('--rpm-auto-add-directories')
408 if [[ "${DEBUG:-0}" != "0" ]]; then
409 COMMAND_ARR+=('--verbose' '--log' 'info')
412 if [[ -n "$PACKAGE_NAME" ]]; then
413 COMMAND_ARR+=('-n' "$PACKAGE_NAME")
416 if [[ "$VENDOR" != "" ]]; then
417 COMMAND_ARR+=('--vendor' "$VENDOR")
420 if [[ "$VERSION" != "" ]]; then
421 COMMAND_ARR+=('-v' "$VERSION")
423 if [[ -n "$default_iteration_value" ]]; then
424 # We can always add an --iteration here. If another one is specified in $@,
425 # that will take precedence, as desired.
426 COMMAND_ARR+=(--iteration "$default_iteration_value")
429 if [[ python = "$PACKAGE_TYPE" ]] && [[ -e "${PACKAGE}/${PACKAGE_NAME}.service" ]]
432 --after-install "${WORKSPACE}/build/go-python-package-scripts/postinst"
433 --before-remove "${WORKSPACE}/build/go-python-package-scripts/prerm"
437 # Append --depends X and other arguments specified by fpm-info.sh in
438 # the package source dir. These are added last so they can override
439 # the arguments added by this script.
440 declare -a fpm_args=()
441 declare -a build_depends=()
442 declare -a fpm_depends=()
443 declare -a fpm_exclude=()
444 declare -a fpm_dirs=(
445 # source dir part of 'dir' package ("/source=/dest" => "/source"):
447 # backports ("llfuse>=1.0" => "backports/python-llfuse")
448 "${WORKSPACE}/backports/${PACKAGE_TYPE}-${PACKAGE%%[<=>]*}")
449 if [[ -n "$PACKAGE_NAME" ]]; then
450 fpm_dirs+=("${WORKSPACE}/backports/${PACKAGE_NAME}")
452 for pkgdir in "${fpm_dirs[@]}"; do
453 fpminfo="$pkgdir/fpm-info.sh"
454 if [[ -e "$fpminfo" ]]; then
455 debug_echo "Loading fpm overrides from $fpminfo"
460 for pkg in "${build_depends[@]}"; do
461 if [[ $TARGET =~ debian|ubuntu ]]; then
462 pkg_deb=$(ls "$WORKSPACE/packages/$TARGET/$pkg_"*.deb | sort -rg | awk 'NR==1')
463 if [[ -e $pkg_deb ]]; then
464 echo "Installing build_dep $pkg from $pkg_deb"
467 echo "Attemping to install build_dep $pkg using apt-get"
468 apt-get install -y "$pkg"
470 apt-get -y -f install
472 pkg_rpm=$(ls "$WORKSPACE/packages/$TARGET/$pkg"-[0-9]*.rpm | sort -rg | awk 'NR==1')
473 if [[ -e $pkg_rpm ]]; then
474 echo "Installing build_dep $pkg from $pkg_rpm"
477 echo "Attemping to install build_dep $pkg"
482 for i in "${fpm_depends[@]}"; do
483 COMMAND_ARR+=('--depends' "$i")
485 for i in "${fpm_exclude[@]}"; do
486 COMMAND_ARR+=('--exclude' "$i")
489 # Append remaining function arguments directly to fpm's command line.
494 COMMAND_ARR+=("${fpm_args[@]}")
496 COMMAND_ARR+=("$PACKAGE")
498 debug_echo -e "\n${COMMAND_ARR[@]}\n"
500 FPM_RESULTS=$("${COMMAND_ARR[@]}")
503 fpm_verify $FPM_EXIT_CODE $FPM_RESULTS
505 # if something went wrong and debug is off, print out the fpm command that errored
506 if [[ 0 -ne $? ]] && [[ "$STDOUT_IF_DEBUG" == "/dev/null" ]]; then
507 echo -e "\n${COMMAND_ARR[@]}\n"
511 # verify build results
518 if [[ $FPM_RESULTS =~ ([A-Za-z0-9_\.-]*\.)(deb|rpm) ]]; then
519 FPM_PACKAGE_NAME=${BASH_REMATCH[1]}${BASH_REMATCH[2]}
522 if [[ "$FPM_PACKAGE_NAME" == "" ]]; then
525 echo "Error: $PACKAGE: Unable to figure out package name from fpm results:"
530 elif [[ "$FPM_RESULTS" =~ "File already exists" ]]; then
531 echo "Package $FPM_PACKAGE_NAME exists, not rebuilding"
533 elif [[ 0 -ne "$FPM_EXIT_CODE" ]]; then
535 echo "Error building package for $1:\n $FPM_RESULTS"
542 if [[ "$FORMAT" == "deb" ]]; then
543 $SUDO apt-get install $PACKAGES --yes
544 elif [[ "$FORMAT" == "rpm" ]]; then
545 $SUDO yum -q -y install $PACKAGES
550 txt="********** $1 **********"
551 printf "\n%*s%s\n\n" $((($COLUMNS-${#txt})/2)) "" "$txt"
555 if [[ "$1" != "0" ]]; then
556 title "!!!!!! $2 FAILED !!!!!!"
557 failures+=("$2 (`timer`)")
559 successes+=("$2 (`timer`)")
568 echo -n "$(($SECONDS - $t0))s"
572 for x in "${successes[@]}"
577 if [[ ${#failures[@]} == 0 ]]
579 echo "All test suites passed."
581 echo "Failures (${#failures[@]}):"
582 for x in "${failures[@]}"