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 ARVADOS_BUILDING_VERSION=`git describe --abbrev=0`
56 declare $(format_last_commit_here "git_ts=%ct")
57 ARVADOS_BUILDING_VERSION="$ARVADOS_BUILDING_VERSION.$(date -ud "@$git_ts" +%Y%m%d%H%M%S)"
58 echo "$ARVADOS_BUILDING_VERSION"
61 nohash_version_from_git() {
62 if [[ -n "$ARVADOS_BUILDING_VERSION" ]]; then
63 echo "$ARVADOS_BUILDING_VERSION"
66 version_from_git $1 | cut -d. -f1-3
69 timestamp_from_git() {
70 format_last_commit_here "%ct"
73 handle_python_package () {
74 # This function assumes the current working directory is the python package directory
75 if [ -n "$(find dist -name "*-$ARVADOS_BUILDING_VERSION.$(date -ud "@$git_ts" +%Y%m%d%H%M%S).tar.gz" -print -quit)" ]; then
76 # This package doesn't need rebuilding.
79 # Make sure only to use sdist - that's the only format pip can deal with (sigh)
80 python setup.py $DASHQ_UNLESS_DEBUG sdist
84 local gem_name="$1"; shift
85 local gem_version="$(nohash_version_from_git)"
86 local gem_src_dir="$(pwd)"
88 if [[ -n "$ONLY_BUILD" ]] && [[ "$gem_name" != "$ONLY_BUILD" ]] ; then
92 if ! [[ -e "${gem_name}-${gem_version}.gem" ]]; then
93 find -maxdepth 1 -name "${gem_name}-*.gem" -delete
95 # -q appears to be broken in gem version 2.2.2
96 $GEM build "$gem_name.gemspec" $DASHQ_UNLESS_DEBUG >"$STDOUT_IF_DEBUG" 2>"$STDERR_IF_DEBUG"
100 # Usage: package_go_binary services/foo arvados-foo "Compute foo to arbitrary precision"
101 package_go_binary() {
102 local src_path="$1"; shift
103 local prog="$1"; shift
104 local description="$1"; shift
105 local license_file="${1:-agpl-3.0.txt}"; shift
107 if [[ -n "$ONLY_BUILD" ]] && [[ "$prog" != "$ONLY_BUILD" ]] ; then
111 debug_echo "package_go_binary $src_path as $prog"
113 local basename="${src_path##*/}"
115 mkdir -p "$GOPATH/src/git.curoverse.com"
116 ln -sfn "$WORKSPACE" "$GOPATH/src/git.curoverse.com/arvados.git"
117 (cd "$GOPATH/src/git.curoverse.com/arvados.git" && "$GOPATH/bin/govendor" sync -v)
119 cd "$GOPATH/src/git.curoverse.com/arvados.git/$src_path"
120 local version="$(version_from_git)"
121 local timestamp="$(timestamp_from_git)"
123 # Update the version number and build a new package if the vendor
124 # bundle has changed, or the command imports anything from the
125 # Arvados SDK and the SDK has changed.
126 declare -a checkdirs=(vendor)
127 if grep -qr git.curoverse.com/arvados .; then
129 if [[ "$prog" -eq "crunch-dispatch-slurm" ]]; then
130 checkdirs+=(lib/dispatchcloud)
133 for dir in ${checkdirs[@]}; do
134 cd "$GOPATH/src/git.curoverse.com/arvados.git/$dir"
135 ts="$(timestamp_from_git)"
136 if [[ "$ts" -gt "$timestamp" ]]; then
137 version=$(version_from_git)
142 cd $WORKSPACE/packages/$TARGET
143 test_package_presence $prog $version go
145 if [[ "$?" != "0" ]]; then
149 go get -ldflags "-X main.version=${version}" "git.curoverse.com/arvados.git/$src_path"
152 systemd_unit="$WORKSPACE/${src_path}/${prog}.service"
153 if [[ -e "${systemd_unit}" ]]; then
155 --after-install "${WORKSPACE}/build/go-python-package-scripts/postinst"
156 --before-remove "${WORKSPACE}/build/go-python-package-scripts/prerm"
157 "${systemd_unit}=/lib/systemd/system/${prog}.service")
159 switches+=("$WORKSPACE/${license_file}=/usr/share/doc/$prog/${license_file}")
161 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[@]}"
164 default_iteration() {
165 if [[ -n "$ARVADOS_BUILDING_VERSION" ]]; then
166 echo "$ARVADOS_BUILDING_ITERATION"
169 local package_name="$1"; shift
170 local package_version="$1"; shift
171 local package_type="$1"; shift
173 if [[ $package_version =~ ^0\.1\.([0-9]{14})(\.|$) ]] && \
174 [[ ${BASH_REMATCH[1]} -le $LICENSE_PACKAGE_TS ]]; then
177 if [[ $package_type =~ ^python ]]; then
178 # Fix --iteration for #9242.
184 _build_rails_package_scripts() {
185 local pkgname="$1"; shift
186 local destdir="$1"; shift
187 local srcdir="$RUN_BUILD_PACKAGES_PATH/rails-package-scripts"
188 for scriptname in postinst prerm postrm; do
189 cat "$srcdir/$pkgname.sh" "$srcdir/step2.sh" "$srcdir/$scriptname.sh" \
190 >"$destdir/$scriptname" || return $?
194 test_rails_package_presence() {
195 local pkgname="$1"; shift
196 local srcdir="$1"; shift
198 if [[ -n "$ONLY_BUILD" ]] && [[ "$pkgname" != "$ONLY_BUILD" ]] ; then
206 local version="$(version_from_git)"
210 test_package_presence $pkgname $version rails "$RAILS_PACKAGE_ITERATION"
213 test_package_presence() {
214 local pkgname="$1"; shift
215 local version="$1"; shift
216 local pkgtype="$1"; shift
217 local iteration="$1"; shift
218 local arch="$1"; shift
220 if [[ -n "$ONLY_BUILD" ]] && [[ "$pkgname" != "$ONLY_BUILD" ]] ; then
224 if [[ "$iteration" == "" ]]; then
225 iteration="$(default_iteration "$pkgname" "$version" "$pkgtype")"
228 if [[ "$arch" == "" ]]; then
229 rpm_architecture="x86_64"
230 deb_architecture="amd64"
232 if [[ "$pkgtype" =~ ^(python|python3)$ ]]; then
233 rpm_architecture="noarch"
234 deb_architecture="all"
237 if [[ "$pkgtype" =~ ^(src)$ ]]; then
238 rpm_architecture="noarch"
239 deb_architecture="all"
242 # These python packages have binary components
243 if [[ "$pkgname" =~ (ruamel|ciso|pycrypto|pyyaml) ]]; then
244 rpm_architecture="x86_64"
245 deb_architecture="amd64"
248 rpm_architecture=$arch
249 deb_architecture=$arch
252 if [[ "$FORMAT" == "deb" ]]; then
253 local complete_pkgname="${pkgname}_$version${iteration:+-$iteration}_$deb_architecture.deb"
255 # rpm packages get iteration 1 if we don't supply one
256 iteration=${iteration:-1}
257 local complete_pkgname="$pkgname-$version-${iteration}.$rpm_architecture.rpm"
260 # See if we can skip building the package, only if it already exists in the
261 # processed/ directory. If so, move it back to the packages directory to make
262 # sure it gets picked up by the test and/or upload steps.
263 if [[ -e "processed/$complete_pkgname" ]]; then
264 echo "Package $complete_pkgname exists, not rebuilding!"
265 mv processed/$complete_pkgname .
268 echo "Package $complete_pkgname not found, building"
273 handle_rails_package() {
274 local pkgname="$1"; shift
276 if [[ -n "$ONLY_BUILD" ]] && [[ "$pkgname" != "$ONLY_BUILD" ]] ; then
279 local srcdir="$1"; shift
281 local license_path="$1"; shift
282 local version="$(version_from_git)"
283 local scripts_dir="$(mktemp --tmpdir -d "$pkgname-XXXXXXXX.scripts")" && \
286 _build_rails_package_scripts "$pkgname" "$scripts_dir"
289 git rev-parse HEAD >git-commit.version
292 if [[ 0 != "$?" ]] || ! cd "$WORKSPACE/packages/$TARGET"; then
293 echo "ERROR: $pkgname package prep failed" >&2
294 rm -rf "$scripts_dir"
298 local railsdir="/var/www/${pkgname%-server}/current"
299 local -a pos_args=("$srcdir/=$railsdir" "$pkgname" "Curoverse, Inc." dir "$version")
300 local license_arg="$license_path=$railsdir/$(basename "$license_path")"
301 local -a switches=(--after-install "$scripts_dir/postinst"
302 --before-remove "$scripts_dir/prerm"
303 --after-remove "$scripts_dir/postrm")
304 if [[ -z "$ARVADOS_BUILDING_VERSION" ]]; then
305 switches+=(--iteration $RAILS_PACKAGE_ITERATION)
307 # For some reason fpm excludes need to not start with /.
308 local exclude_root="${railsdir#/}"
309 # .git and packages are for the SSO server, which is built from its
311 local -a exclude_list=(.git packages tmp log coverage Capfile\* \
312 config/deploy\* config/application.yml)
313 # for arvados-workbench, we need to have the (dummy) config/database.yml in the package
314 if [[ "$pkgname" != "arvados-workbench" ]]; then
315 exclude_list+=('config/database.yml')
317 for exclude in ${exclude_list[@]}; do
318 switches+=(-x "$exclude_root/$exclude")
320 fpm_build "${pos_args[@]}" "${switches[@]}" \
321 -x "$exclude_root/vendor/cache-*" \
322 -x "$exclude_root/vendor/bundle" "$@" "$license_arg"
323 rm -rf "$scripts_dir"
326 # Build packages for everything
328 # The package source. Depending on the source type, this can be a
329 # path, or the name of the package in an upstream repository (e.g.,
333 # The name of the package to build.
336 # Optional: the vendor of the package. Should be "Curoverse, Inc." for
337 # packages of our own software. Passed to fpm --vendor.
340 # The type of source package. Passed to fpm -s. Default "python".
341 PACKAGE_TYPE=${1:-python}
343 # Optional: the package version number. Passed to fpm -v.
347 if [[ -n "$ONLY_BUILD" ]] && [[ "$PACKAGE_NAME" != "$ONLY_BUILD" ]] && [[ "$PACKAGE" != "$ONLY_BUILD" ]] ; then
351 local default_iteration_value="$(default_iteration "$PACKAGE" "$VERSION" "$PACKAGE_TYPE")"
354 case "$PACKAGE_TYPE" in
356 # All Arvados Python2 packages depend on Python 2.7.
357 # Make sure we build with that for consistency.
359 set -- "$@" --python-bin python2.7 \
360 --python-easyinstall "$EASY_INSTALL2" \
361 --python-package-name-prefix "$PYTHON2_PKG_PREFIX" \
362 --prefix "$PYTHON2_PREFIX" \
363 --python-install-lib "$PYTHON2_INSTALL_LIB" \
364 --python-install-data . \
365 --exclude "${PYTHON2_INSTALL_LIB#/}/tests" \
366 --depends "$PYTHON2_PACKAGE"
369 # fpm does not actually support a python3 package type. Instead
370 # we recognize it as a convenience shortcut to add several
371 # necessary arguments to fpm's command line later, after we're
372 # done handling positional arguments.
375 set -- "$@" --python-bin python3 \
376 --python-easyinstall "$EASY_INSTALL3" \
377 --python-package-name-prefix "$PYTHON3_PKG_PREFIX" \
378 --prefix "$PYTHON3_PREFIX" \
379 --python-install-lib "$PYTHON3_INSTALL_LIB" \
380 --python-install-data . \
381 --exclude "${PYTHON3_INSTALL_LIB#/}/tests" \
382 --depends "$PYTHON3_PACKAGE"
386 declare -a COMMAND_ARR=("fpm" "--maintainer=Ward Vandewege <ward@curoverse.com>" "-s" "$PACKAGE_TYPE" "-t" "$FORMAT")
387 if [ python = "$PACKAGE_TYPE" ] && [ deb = "$FORMAT" ]; then
388 # Dependencies are built from setup.py. Since setup.py will never
389 # refer to Debian package iterations, it doesn't make sense to
390 # enforce those in the .deb dependencies.
391 COMMAND_ARR+=(--deb-ignore-iteration-in-dependencies)
394 # 12271 - As FPM-generated packages don't include scripts by default, the
395 # packages cleanup on upgrade depends on files being listed on the %files
396 # section in the generated SPEC files. To remove DIRECTORIES, they need to
397 # be listed in that sectiontoo, so we need to add this parameter to properly
398 # remove lingering dirs. But this only works for python2: if used on
399 # python33, it includes dirs like /opt/rh/python33 that belong to
401 if [[ "$FORMAT" = rpm ]] && [[ "$python" = python2.7 ]]; then
402 COMMAND_ARR+=('--rpm-auto-add-directories')
405 if [[ "${DEBUG:-0}" != "0" ]]; then
406 COMMAND_ARR+=('--verbose' '--log' 'info')
409 if [[ -n "$PACKAGE_NAME" ]]; then
410 COMMAND_ARR+=('-n' "$PACKAGE_NAME")
413 if [[ "$VENDOR" != "" ]]; then
414 COMMAND_ARR+=('--vendor' "$VENDOR")
417 if [[ "$VERSION" != "" ]]; then
418 COMMAND_ARR+=('-v' "$VERSION")
420 if [[ -n "$default_iteration_value" ]]; then
421 # We can always add an --iteration here. If another one is specified in $@,
422 # that will take precedence, as desired.
423 COMMAND_ARR+=(--iteration "$default_iteration_value")
426 if [[ python = "$PACKAGE_TYPE" ]] && [[ -e "${PACKAGE}/${PACKAGE_NAME}.service" ]]
429 --after-install "${WORKSPACE}/build/go-python-package-scripts/postinst"
430 --before-remove "${WORKSPACE}/build/go-python-package-scripts/prerm"
434 # Append --depends X and other arguments specified by fpm-info.sh in
435 # the package source dir. These are added last so they can override
436 # the arguments added by this script.
437 declare -a fpm_args=()
438 declare -a build_depends=()
439 declare -a fpm_depends=()
440 declare -a fpm_exclude=()
441 declare -a fpm_dirs=(
442 # source dir part of 'dir' package ("/source=/dest" => "/source"):
444 # backports ("llfuse>=1.0" => "backports/python-llfuse")
445 "${WORKSPACE}/backports/${PACKAGE_TYPE}-${PACKAGE%%[<=>]*}")
446 if [[ -n "$PACKAGE_NAME" ]]; then
447 fpm_dirs+=("${WORKSPACE}/backports/${PACKAGE_NAME}")
449 for pkgdir in "${fpm_dirs[@]}"; do
450 fpminfo="$pkgdir/fpm-info.sh"
451 if [[ -e "$fpminfo" ]]; then
452 debug_echo "Loading fpm overrides from $fpminfo"
457 for pkg in "${build_depends[@]}"; do
458 if [[ $TARGET =~ debian|ubuntu ]]; then
459 pkg_deb=$(ls "$WORKSPACE/packages/$TARGET/$pkg_"*.deb | sort -rg | awk 'NR==1')
460 if [[ -e $pkg_deb ]]; then
461 echo "Installing build_dep $pkg from $pkg_deb"
464 echo "Attemping to install build_dep $pkg using apt-get"
465 apt-get install -y "$pkg"
467 apt-get -y -f install
469 pkg_rpm=$(ls "$WORKSPACE/packages/$TARGET/$pkg"-[0-9]*.rpm | sort -rg | awk 'NR==1')
470 if [[ -e $pkg_rpm ]]; then
471 echo "Installing build_dep $pkg from $pkg_rpm"
474 echo "Attemping to install build_dep $pkg"
479 for i in "${fpm_depends[@]}"; do
480 COMMAND_ARR+=('--depends' "$i")
482 for i in "${fpm_exclude[@]}"; do
483 COMMAND_ARR+=('--exclude' "$i")
486 # Append remaining function arguments directly to fpm's command line.
491 COMMAND_ARR+=("${fpm_args[@]}")
493 COMMAND_ARR+=("$PACKAGE")
495 debug_echo -e "\n${COMMAND_ARR[@]}\n"
497 FPM_RESULTS=$("${COMMAND_ARR[@]}")
500 fpm_verify $FPM_EXIT_CODE $FPM_RESULTS
502 # if something went wrong and debug is off, print out the fpm command that errored
503 if [[ 0 -ne $? ]] && [[ "$STDOUT_IF_DEBUG" == "/dev/null" ]]; then
504 echo -e "\n${COMMAND_ARR[@]}\n"
508 # verify build results
515 if [[ $FPM_RESULTS =~ ([A-Za-z0-9_\.-]*\.)(deb|rpm) ]]; then
516 FPM_PACKAGE_NAME=${BASH_REMATCH[1]}${BASH_REMATCH[2]}
519 if [[ "$FPM_PACKAGE_NAME" == "" ]]; then
522 echo "Error: $PACKAGE: Unable to figure out package name from fpm results:"
527 elif [[ "$FPM_RESULTS" =~ "File already exists" ]]; then
528 echo "Package $FPM_PACKAGE_NAME exists, not rebuilding"
530 elif [[ 0 -ne "$FPM_EXIT_CODE" ]]; then
532 echo "Error building package for $1:\n $FPM_RESULTS"
539 if [[ "$FORMAT" == "deb" ]]; then
540 $SUDO apt-get install $PACKAGES --yes
541 elif [[ "$FORMAT" == "rpm" ]]; then
542 $SUDO yum -q -y install $PACKAGES
547 txt="********** $1 **********"
548 printf "\n%*s%s\n\n" $((($COLUMNS-${#txt})/2)) "" "$txt"
552 if [[ "$1" != "0" ]]; then
553 title "!!!!!! $2 FAILED !!!!!!"
554 failures+=("$2 (`timer`)")
556 successes+=("$2 (`timer`)")
565 echo -n "$(($SECONDS - $t0))s"
569 for x in "${successes[@]}"
574 if [[ ${#failures[@]} == 0 ]]
576 echo "All test suites passed."
578 echo "Failures (${#failures[@]}):"
579 for x in "${failures[@]}"