#!/bin/bash -xe # Copyright (C) The Arvados Authors. All rights reserved. # # SPDX-License-Identifier: AGPL-3.0 # A library of functions shared by the various scripts in this directory. # This is the timestamp about when we merged changed to include licenses # with Arvados packages. We use it as a heuristic to add revisions for # older packages. LICENSE_PACKAGE_TS=20151208015500 if [[ -z "$ARVADOS_BUILDING_VERSION" ]]; then RAILS_PACKAGE_ITERATION=1 else RAILS_PACKAGE_ITERATION="$ARVADOS_BUILDING_ITERATION" fi debug_echo () { echo "$@" >"$STDOUT_IF_DEBUG" } find_python_program() { prog="$1" shift for prog in "$@"; do if "$prog" --version >/dev/null 2>&1; then echo "$prog" return 0 fi done cat >&2 <"$STDOUT_IF_DEBUG" 2>"$STDERR_IF_DEBUG" fi } # Usage: package_workbench2 package_workbench2() { local pkgname=arvados-workbench2 local src=services/workbench2 local dst=/var/www/arvados-workbench2/workbench2 local description="Arvados Workbench 2" if [[ -n "$ONLY_BUILD" ]] && [[ "$pkgname" != "$ONLY_BUILD" ]] ; then return 0 fi cd "$WORKSPACE/$src" local version="$(version_from_git)" rm -rf ./build NODE_ENV=production yarn install VERSION="$version" BUILD_NUMBER="$(default_iteration "$pkgname" "$version" yarn)" GIT_COMMIT="$(git rev-parse HEAD | head -c9)" yarn build cd "$WORKSPACE/packages/$TARGET" fpm_build "${WORKSPACE}/$src" "${WORKSPACE}/$src/build/=$dst" "$pkgname" dir "$version" \ --license="GNU Affero General Public License, version 3.0" \ --description="${description}" \ --config-files="/etc/arvados/$pkgname/workbench2.example.json" \ "$WORKSPACE/services/workbench2/etc/arvados/workbench2/workbench2.example.json=/etc/arvados/$pkgname/workbench2.example.json" } calculate_go_package_version() { # $__returnvar has the nameref attribute set, which means it is a reference # to another variable that is passed in as the first argument to this function. # see https://www.gnu.org/software/bash/manual/html_node/Shell-Parameters.html local -n __returnvar="$1"; shift local oldpwd="$PWD" cd "$WORKSPACE" go mod download # Update the version number and build a new package if the vendor # bundle has changed, or the command imports anything from the # Arvados SDK and the SDK has changed. declare -a checkdirs=(go.mod go.sum) while [ -n "$1" ]; do checkdirs+=("$1") shift done # Even our rails packages (version calculation happens here!) depend on a go component (arvados-server) # Everything depends on the build directory. checkdirs+=(sdk/go lib build) local timestamp=0 for dir in ${checkdirs[@]}; do cd "$WORKSPACE" ts="$(timestamp_from_git "$dir")" if [[ "$ts" -gt "$timestamp" ]]; then version=$(version_from_git "$dir") timestamp="$ts" fi done cd "$oldpwd" __returnvar="$version" } # Usage: package_go_binary services/foo arvados-foo [deb|rpm] [amd64|arm64] "Compute foo to arbitrary precision" [apache-2.0.txt] package_go_binary() { local src_path="$1"; shift local prog="$1"; shift local package_format="$1"; shift local target_arch="$1"; shift local description="$1"; shift local license_file="${1:-agpl-3.0.txt}"; shift if [[ -n "$ONLY_BUILD" ]] && [[ "$prog" != "$ONLY_BUILD" ]]; then debug_echo -e "Skipping build of $prog package." return 0 fi native_arch=$(get_native_arch) if [[ "$native_arch" != "amd64" ]] && [[ -n "$target_arch" ]] && [[ "$native_arch" != "$target_arch" ]]; then echo "Error: no cross compilation support for Go on $native_arch, can not build $prog for $target_arch" return 1 fi case "$package_format-$TARGET" in # Ubuntu 20.04 does not support cross compilation because the # libfuse package does not support multiarch. See # . # Red Hat-based distributions do not support native cross compilation at # all (they use a qemu-based solution we haven't implemented yet). deb-ubuntu2004|rpm-*) cross_compilation=0 if [[ "$native_arch" == "amd64" ]] && [[ -n "$target_arch" ]] && [[ "$native_arch" != "$target_arch" ]]; then echo "Error: no cross compilation support for Go on $native_arch for $TARGET, can not build $prog for $target_arch" return 1 fi ;; *) cross_compilation=1 ;; esac if [[ -n "$target_arch" ]]; then archs=($target_arch) else # No target architecture specified, default to native target. When on amd64 # also crosscompile arm64 (when supported). archs=($native_arch) if [[ $cross_compilation -ne 0 ]]; then archs+=("arm64") fi fi for ta in ${archs[@]}; do package_go_binary_worker "$src_path" "$prog" "$package_format" "$description" "$native_arch" "$ta" "$license_file" retval=$? if [[ $retval -ne 0 ]]; then return $retval fi done } # Usage: package_go_binary services/foo arvados-foo deb "Compute foo to arbitrary precision" [amd64/arm64] [amd64/arm64] [apache-2.0.txt] package_go_binary_worker() { local src_path="$1"; shift local prog="$1"; shift local package_format="$1"; shift local description="$1"; shift local native_arch="${1:-amd64}"; shift local target_arch="${1:-amd64}"; shift local license_file="${1:-agpl-3.0.txt}"; shift debug_echo "package_go_binary $src_path as $prog (native arch: $native_arch, target arch: $target_arch)" local basename="${src_path##*/}" calculate_go_package_version go_package_version $src_path cd $WORKSPACE/packages/$TARGET test_package_presence "$prog" "$go_package_version" "go" "" "$target_arch" if [[ $? -ne 0 ]]; then return 0 fi echo "Building $package_format ($target_arch) package for $prog from $src_path" if [[ "$native_arch" == "amd64" ]] && [[ "$target_arch" == "arm64" ]]; then CGO_ENABLED=1 CC=aarch64-linux-gnu-gcc GOARCH=${target_arch} go install -ldflags "-X git.arvados.org/arvados.git/lib/cmd.version=${go_package_version} -X main.version=${go_package_version}" "git.arvados.org/arvados.git/$src_path" else GOARCH=${arch} go install -ldflags "-X git.arvados.org/arvados.git/lib/cmd.version=${go_package_version} -X main.version=${go_package_version}" "git.arvados.org/arvados.git/$src_path" fi local -a switches=() binpath=$GOPATH/bin/${basename} if [[ "${target_arch}" != "${native_arch}" ]]; then switches+=("-a${target_arch}") binpath="$GOPATH/bin/linux_${target_arch}/${basename}" fi case "$package_format" in # As of April 2024 we package identical Go binaries under different # packages and names. This upsets the build id database, so don't # register ourselves there. rpm) switches+=(--rpm-rpmbuild-define="_build_id_links none") ;; esac systemd_unit="$WORKSPACE/${src_path}/${prog}.service" if [[ -e "${systemd_unit}" ]]; then switches+=( --after-install "${WORKSPACE}/build/go-python-package-scripts/postinst" --before-remove "${WORKSPACE}/build/go-python-package-scripts/prerm" "${systemd_unit}=/lib/systemd/system/${prog}.service") fi switches+=("$WORKSPACE/${license_file}=/usr/share/doc/$prog/${license_file}") fpm_build "${WORKSPACE}/${src_path}" "$binpath=/usr/bin/${prog}" "${prog}" dir "${go_package_version}" "--url=https://arvados.org" "--license=GNU Affero General Public License, version 3.0" "--description=${description}" "${switches[@]}" } # Usage: package_go_so lib/foo arvados_foo.so arvados-foo deb amd64 "Arvados foo library" package_go_so() { local src_path="$1"; shift local sofile="$1"; shift local pkg="$1"; shift local package_format="$1"; shift local target_arch="$1"; shift # supported: amd64, arm64 local description="$1"; shift if [[ -n "$ONLY_BUILD" ]] && [[ "$pkg" != "$ONLY_BUILD" ]]; then debug_echo -e "Skipping build of $pkg package." return 0 fi debug_echo "package_go_so $src_path as $pkg" calculate_go_package_version go_package_version $src_path cd $WORKSPACE/packages/$TARGET test_package_presence $pkg $go_package_version go || return 1 cd $WORKSPACE/$src_path go build -buildmode=c-shared -o ${GOPATH}/bin/${sofile} cd $WORKSPACE/packages/$TARGET local -a fpmargs=( "--url=https://arvados.org" "--license=Apache License, Version 2.0" "--description=${description}" "$WORKSPACE/apache-2.0.txt=/usr/share/doc/$pkg/apache-2.0.txt" ) if [[ -e "$WORKSPACE/$src_path/pam-configs-arvados" ]]; then fpmargs+=("$WORKSPACE/$src_path/pam-configs-arvados=/usr/share/doc/$pkg/pam-configs-arvados-go") fi if [[ -e "$WORKSPACE/$src_path/README" ]]; then fpmargs+=("$WORKSPACE/$src_path/README=/usr/share/doc/$pkg/README") fi fpm_build "${WORKSPACE}/${src_path}" "$GOPATH/bin/${sofile}=/usr/lib/${sofile}" "${pkg}" dir "${go_package_version}" "${fpmargs[@]}" } default_iteration() { if [[ -n "$ARVADOS_BUILDING_VERSION" ]]; then echo "$ARVADOS_BUILDING_ITERATION" return fi local package_name="$1"; shift local package_version="$1"; shift local package_type="$1"; shift local iteration=1 if [[ $package_version =~ ^0\.1\.([0-9]{14})(\.|$) ]] && \ [[ ${BASH_REMATCH[1]} -le $LICENSE_PACKAGE_TS ]]; then iteration=2 fi echo $iteration } _build_rails_package_scripts() { local pkgname="$1"; shift local destdir="$1"; shift local srcdir="$RUN_BUILD_PACKAGES_PATH/rails-package-scripts" for scriptname in postinst prerm postrm; do cat "$srcdir/$pkgname.sh" "$srcdir/step2.sh" "$srcdir/$scriptname.sh" \ >"$destdir/$scriptname" || return $? done } rails_package_version() { local pkgname="$1"; shift local srcdir="$1"; shift if [[ -n "$ARVADOS_BUILDING_VERSION" ]]; then echo "$ARVADOS_BUILDING_VERSION" return fi local version="$(version_from_git)" if [ $pkgname = "arvados-api-server" ] ; then calculate_go_package_version version cmd/arvados-server "$srcdir" fi echo $version } test_rails_package_presence() { local pkgname="$1"; shift local srcdir="$1"; shift if [[ -n "$ONLY_BUILD" ]] && [[ "$pkgname" != "$ONLY_BUILD" ]] ; then return 1 fi tmppwd=`pwd` cd $srcdir local version="$(rails_package_version "$pkgname" "$srcdir")" cd $tmppwd test_package_presence $pkgname $version rails "$RAILS_PACKAGE_ITERATION" } get_complete_package_name() { # if the errexit flag is set, unset it until this function returns # otherwise, the shift calls below will abort the program if optional arguments are not supplied if [ -o errexit ]; then set +e trap 'set -e' RETURN fi # $__returnvar has the nameref attribute set, which means it is a reference # to another variable that is passed in as the first argument to this function. # see https://www.gnu.org/software/bash/manual/html_node/Shell-Parameters.html local -n __returnvar="$1"; shift local pkgname="$1"; shift local version="$1"; shift local pkgtype="$1"; shift local iteration="$1"; shift local arch="$1"; shift if [[ "$iteration" == "" ]]; then iteration="$(default_iteration "$pkgname" "$version" "$pkgtype")" fi if [[ "$arch" == "" ]]; then native_arch=$(get_native_arch) rpm_native_arch="x86_64" if [[ "$HOSTTYPE" == "aarch64" ]]; then rpm_native_arch="arm64" fi rpm_architecture="$rpm_native_arch" deb_architecture="$native_arch" if [[ "$pkgtype" =~ ^(src)$ ]]; then rpm_architecture="noarch" deb_architecture="all" fi else rpm_architecture=$arch deb_architecture=$arch fi local complete_pkgname="${pkgname}_$version${iteration:+-$iteration}_$deb_architecture.deb" if [[ "$FORMAT" == "rpm" ]]; then # rpm packages get iteration 1 if we don't supply one iteration=${iteration:-1} complete_pkgname="$pkgname-$version-${iteration}.$rpm_architecture.rpm" fi __returnvar=${complete_pkgname} } # Test if the package already exists, if not return 0, if it does return 1 test_package_presence() { local pkgname="$1"; shift local version="$1"; shift local pkgtype="$1"; shift local iteration="$1"; shift local arch="$1"; shift if [[ -n "$ONLY_BUILD" ]] && [[ "$pkgname" != "$ONLY_BUILD" ]] ; then return 1 fi local full_pkgname get_complete_package_name full_pkgname "$pkgname" "$version" "$pkgtype" "$iteration" "$arch" # See if we can skip building the package, only if it already exists in the # processed/ directory. If so, move it back to the packages directory to make # sure it gets picked up by the test and/or upload steps. # Get the list of packages from the repos if [[ "$FORCE_BUILD" == "1" ]]; then echo "Package $full_pkgname build forced with --force-build, building" elif [[ "$FORMAT" == "deb" ]]; then declare -A dd dd[debian11]=bullseye dd[debian12]=bookworm dd[ubuntu2004]=focal dd[ubuntu2204]=jammy D=${dd[$TARGET]} if [ ${pkgname:0:3} = "lib" ]; then repo_subdir=${pkgname:0:4} else repo_subdir=${pkgname:0:1} fi repo_pkg_list=$(curl -s -o - http://apt.arvados.org/${D}/pool/main/${repo_subdir}/${pkgname}/) echo "${repo_pkg_list}" |grep -q ${full_pkgname} if [ $? -eq 0 ] ; then echo "Package $full_pkgname exists upstream, not rebuilding, downloading instead!" curl -s -o "$WORKSPACE/packages/$TARGET/${full_pkgname}" http://apt.arvados.org/${D}/pool/main/${repo_subdir}/${pkgname}/${full_pkgname} return 1 elif test -f "$WORKSPACE/packages/$TARGET/processed/${full_pkgname}" ; then echo "Package $full_pkgname exists, not rebuilding!" return 1 else echo "Package $full_pkgname not found, building" return 0 fi else local rpm_root case "$TARGET" in rocky8) rpm_root="CentOS/8/dev" ;; *) echo "FIXME: Don't know RPM URL path for $TARGET, building" return 0 ;; esac local rpm_url="http://rpm.arvados.org/$rpm_root/$arch/$full_pkgname" if curl -fs -o "$WORKSPACE/packages/$TARGET/$full_pkgname" "$rpm_url"; then echo "Package $full_pkgname exists upstream, not rebuilding, downloading instead!" return 1 elif [[ -f "$WORKSPACE/packages/$TARGET/processed/$full_pkgname" ]]; then echo "Package $full_pkgname exists, not rebuilding!" return 1 else echo "Package $full_pkgname not found, building" return 0 fi fi } handle_rails_package() { local pkgname="$1"; shift if [[ -n "$ONLY_BUILD" ]] && [[ "$pkgname" != "$ONLY_BUILD" ]] ; then return 0 fi local srcdir="$1"; shift cd "$srcdir" local license_path="$1"; shift local version="$(rails_package_version "$pkgname" "$srcdir")" echo "$version" >package-build.version local scripts_dir="$(mktemp --tmpdir -d "$pkgname-XXXXXXXX.scripts")" && \ ( set -e _build_rails_package_scripts "$pkgname" "$scripts_dir" cd "$srcdir" mkdir -p tmp git rev-parse HEAD >git-commit.version # Please make sure you read `bundle help config` carefully before you # modify any of these settings. Some of their names are not intuitive. # # `bundle cache` caches from Git and paths, not just rubygems.org. bundle config set cache_all true # Disallow changes to Gemfile. bundle config set deployment true # Avoid loading system-wide gems (although this seems to not work 100%). bundle config set disable_shared_gems true # `bundle cache` only downloads gems, doesn't install them. # Our Rails postinst script does the install step. bundle config set no_install true # As of April 2024/Bundler 2.4, `bundle cache` seems to skip downloading # gems that are already available system-wide... and then it complains # that your bundle is incomplete. Work around this by fetching gems # manually. # TODO: Once all our supported distros have Ruby 3+, we can modify # the awk script to print "NAME:VERSION" output, and pipe that directly # to `xargs -0r gem fetch` for reduced overhead. mkdir -p vendor/cache awk -- ' BEGIN { OFS="\0"; ORS="\0"; } (/^[A-Z ]*$/) { level1=$0; } (/^ [[:alpha:]]+:$/) { level2=substr($0, 3, length($0) - 3); next; } (/^ {0,3}[[:alpha:]]/) { level2=""; next; } (level1 == "GEM" && level2 == "specs" && NF == 2 && $1 ~ /^[[:alpha:]][-_[:alnum:]]*$/ && $2 ~ /\([[:digit:]]+[-_+.[:alnum:]]*\)$/) { print "--version", substr($2, 2, length($2) - 2), $1; } ' Gemfile.lock | env -C vendor/cache xargs -0r --max-args=3 gem fetch # Despite the bug, we still run `bundle cache` to make sure Bundler is # happy for later steps. bundle cache ) if [[ 0 != "$?" ]] || ! cd "$WORKSPACE/packages/$TARGET"; then echo "ERROR: $pkgname package prep failed" >&2 rm -rf "$scripts_dir" EXITCODE=1 return 1 fi local railsdir="/var/www/${pkgname%-server}/current" local -a pos_args=("$srcdir/=$railsdir" "$pkgname" dir "$version") local license_arg="$license_path=$railsdir/$(basename "$license_path")" local -a switches=(--after-install "$scripts_dir/postinst" --before-remove "$scripts_dir/prerm" --after-remove "$scripts_dir/postrm") if [[ -z "$ARVADOS_BUILDING_VERSION" ]]; then switches+=(--iteration $RAILS_PACKAGE_ITERATION) fi # For some reason fpm excludes need to not start with /. local exclude_root="${railsdir#/}" for exclude in tmp log coverage Capfile\* \ config/deploy\* \ config/application.yml \ config/database.yml; do switches+=(-x "$exclude_root/$exclude") done fpm_build "${srcdir}" "${pos_args[@]}" "${switches[@]}" \ -x "$exclude_root/vendor/cache-*" \ -x "$exclude_root/vendor/bundle" "$@" "$license_arg" rm -rf "$scripts_dir" } # Usage: handle_api_server [amd64|arm64] handle_api_server () { local target_arch="${1:-amd64}"; shift if [[ -n "$ONLY_BUILD" ]] && [[ "$ONLY_BUILD" != "arvados-api-server" ]] ; then debug_echo -e "Skipping build of arvados-api-server package." return 0 fi native_arch=$(get_native_arch) if [[ "$target_arch" != "$native_arch" ]]; then echo "Error: no cross compilation support for Rails yet, can not build arvados-api-server for $ARCH" echo exit 1 fi # Build the API server package test_rails_package_presence arvados-api-server "$WORKSPACE/services/api" if [[ "$?" == "0" ]]; then calculate_go_package_version arvados_server_version cmd/arvados-server arvados_server_iteration=$(default_iteration "arvados-server" "$arvados_server_version" "go") 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" --depends "arvados-server = ${arvados_server_version}-${arvados_server_iteration}" fi } # Usage: handle_arvados_src handle_arvados_src () { if [[ -n "$ONLY_BUILD" ]] && [[ "$ONLY_BUILD" != "arvados-src" ]] ; then debug_echo -e "Skipping build of arvados-src package." return 0 fi # arvados-src ( cd "$WORKSPACE" COMMIT_HASH=$(format_last_commit_here "%H") arvados_src_version="$(version_from_git)" cd $WORKSPACE/packages/$TARGET test_package_presence arvados-src "$arvados_src_version" src "" if [[ "$?" == "0" ]]; then cd "$WORKSPACE" 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 $WORKSPACE/packages/$TARGET fpm_build "$WORKSPACE" $SRC_BUILD_DIR/=/usr/local/arvados/src arvados-src 'dir' "$arvados_src_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" fi ) } setup_build_virtualenv() { PYTHON_BUILDROOT="$(mktemp --directory --tmpdir pybuild.XXXXXXXX)" "$PYTHON3_EXECUTABLE" -m venv "$PYTHON_BUILDROOT/venv" "$PYTHON_BUILDROOT/venv/bin/pip" install --upgrade build piprepo setuptools wheel mkdir "$PYTHON_BUILDROOT/wheelhouse" } # Build python packages with a virtualenv built-in # Usage: fpm_build_virtualenv arvados-python-client sdk/python [deb|rpm] [amd64|arm64] fpm_build_virtualenv () { local pkg=$1; shift local pkg_dir=$1; shift local package_format="$1"; shift local target_arch="${1:-amd64}"; shift native_arch=$(get_native_arch) if [[ -n "$target_arch" ]] && [[ "$native_arch" == "$target_arch" ]]; then fpm_build_virtualenv_worker "$pkg" "$pkg_dir" "$package_format" "$native_arch" "$target_arch" elif [[ -z "$target_arch" ]]; then fpm_build_virtualenv_worker "$pkg" "$pkg_dir" "$package_format" "$native_arch" "$native_arch" else echo "Error: no cross compilation support for Python yet, can not build $pkg for $target_arch" return 1 fi } # Build python packages with a virtualenv built-in # Usage: fpm_build_virtualenv_worker arvados-python-client sdk/python python3 [deb|rpm] [amd64|arm64] [amd64|arm64] fpm_build_virtualenv_worker () { PKG=$1; shift PKG_DIR=$1; shift local package_format="$1"; shift local native_arch="${1:-amd64}"; shift local target_arch=${1:-amd64}; shift # Set up 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 if [[ "$ARVADOS_BUILDING_ITERATION" == "" ]]; then ARVADOS_BUILDING_ITERATION=1 fi PACKAGE_PREFIX=$PYTHON3_PKG_PREFIX if [[ "$PKG" != "arvados-docker-cleaner" ]]; then PYTHON_PKG=$PACKAGE_PREFIX-$PKG else # Exception to our package naming convention PYTHON_PKG=$PKG fi # We must always add a wheel to our repository, even if we're not building # this distro package, because it might be a dependency for a later # package we do build. if [[ "$PKG_DIR" =~ ^.=[0-9]+\. ]]; then # Not source to build, but a version to download. # The rest of the function expects a filesystem path, so set one afterwards. "$PYTHON_BUILDROOT/venv/bin/pip" download --dest="$PYTHON_BUILDROOT/wheelhouse" "$PKG$PKG_DIR" \ && PKG_DIR="$PYTHON_BUILDROOT/nonexistent" else # Make PKG_DIR absolute. PKG_DIR="$(env -C "$WORKSPACE" readlink -e "$PKG_DIR")" if [[ -e "$PKG_DIR/pyproject.toml" ]]; then "$PYTHON_BUILDROOT/venv/bin/python" -m build --outdir="$PYTHON_BUILDROOT/wheelhouse" "$PKG_DIR" else env -C "$PKG_DIR" "$PYTHON_BUILDROOT/venv/bin/python" setup.py bdist_wheel --dist-dir="$PYTHON_BUILDROOT/wheelhouse" fi fi if [[ $? -ne 0 ]]; then printf "Error, unable to download/build wheel for %s @ %s" "$PKG" "$PKG_DIR" exit 1 elif ! "$PYTHON_BUILDROOT/venv/bin/piprepo" build "$PYTHON_BUILDROOT/wheelhouse"; then printf "Error, unable to update local wheel repository" exit 1 fi if [[ -n "$ONLY_BUILD" ]] && [[ "$PYTHON_PKG" != "$ONLY_BUILD" ]] && [[ "$PKG" != "$ONLY_BUILD" ]]; then return 0 fi local venv_dir="$PYTHON_BUILDROOT/$PYTHON_PKG" echo "Creating virtualenv..." if ! "$PYTHON3_EXECUTABLE" -m venv "$venv_dir"; then printf "Error, unable to run\n %s -m venv %s\n" "$PYTHON3_EXECUTABLE" "$venv_dir" exit 1 # We must have the dependency resolver introduced in late 2020 for the rest # of our install process to work. # elif ! "$venv_dir/bin/pip" install "pip>=20.3"; then printf "Error, unable to run\n %s/bin/pip install 'pip>=20.3'\n" "$venv_dir" exit 1 fi local pip_wheel="$(ls --sort=time --reverse "$PYTHON_BUILDROOT/wheelhouse/$(echo "$PKG" | sed s/-/_/g)-"*.whl | tail -n1)" if [[ -z "$pip_wheel" ]]; then printf "Error, unable to find built wheel for $PKG" exit 1 elif ! "$venv_dir/bin/pip" install $DASHQ_UNLESS_DEBUG $CACHE_FLAG --extra-index-url="file://$PYTHON_BUILDROOT/wheelhouse/simple" "$pip_wheel"; then printf "Error, unable to run %s/bin/pip install $DASHQ_UNLESS_DEBUG $CACHE_FLAG --extra-index-url=file://%s %s " "$venv_dir" "$PYTHON_BUILDROOT/wheelhouse/simple" "$pip_wheel" exit 1 fi # Determine the package version from the wheel PYTHON_VERSION="$("$venv_dir/bin/python" "$WORKSPACE/build/pypkg_info.py" metadata "$PKG" Version)" UNFILTERED_PYTHON_VERSION="$(echo "$PYTHON_VERSION" | sed 's/\.dev/~dev/; s/\([0-9]\)rc/\1~rc/')" # See if we actually need to build this package; does it exist already? # We can't do this earlier than here, because we need PYTHON_VERSION. if ! test_package_presence "$PYTHON_PKG" "$UNFILTERED_PYTHON_VERSION" python3 "$ARVADOS_BUILDING_ITERATION" "$target_arch"; then return 0 fi echo "Building $package_format ($target_arch) package for $PKG from $PKG_DIR" # Replace the shebang lines in all python scripts, and handle the activate # scripts too. This is a functional replacement of the 237 line # virtualenv_tools.py script that doesn't work in python3 without serious # patching, minus the parts we don't need (modifying pyc files, etc). local sys_venv_dir="/usr/lib/$PYTHON_PKG" local sys_venv_py="$sys_venv_dir/bin/python$PYTHON3_VERSION" find "$venv_dir/bin" -type f | while read binfile; do if file --mime "$binfile" | grep -q binary; then : # Nothing to do for binary files elif [[ "$binfile" =~ /activate(.csh|.fish|)$ ]]; then sed -ri "s@VIRTUAL_ENV(=| )\".*\"@VIRTUAL_ENV\\1\"$sys_venv_dir\"@" "$binfile" else # Replace shebang line sed -ri "1 s@^#\![^[:space:]]+/bin/python[0-9.]*@#\!$sys_venv_py@" "$binfile" fi done # Using `env -C` sets the directory where the package is built. # Using `fpm --chdir` sets the root directory for source arguments. declare -a COMMAND_ARR=( env -C "$PYTHON_BUILDROOT" fpm --chdir="$venv_dir" --name="$PYTHON_PKG" --version="$UNFILTERED_PYTHON_VERSION" --input-type=dir --output-type="$package_format" --depends="$PYTHON3_PACKAGE" --iteration="$ARVADOS_BUILDING_ITERATION" --replaces="python-$PKG" --url="https://arvados.org" ) # Append fpm flags corresponding to Python package metadata. readarray -d "" -O "${#COMMAND_ARR[@]}" -t COMMAND_ARR < \ <("$venv_dir/bin/python3" "$WORKSPACE/build/pypkg_info.py" \ --delimiter=\\0 --format=fpm \ metadata "$PKG" License Summary) if [[ -n "$target_arch" ]] && [[ "$target_arch" != "amd64" ]]; then COMMAND_ARR+=("-a$target_arch") fi if [[ "$MAINTAINER" != "" ]]; then COMMAND_ARR+=('--maintainer' "$MAINTAINER") fi if [[ "$VENDOR" != "" ]]; then COMMAND_ARR+=('--vendor' "$VENDOR") fi if [[ "$DEBUG" != "0" ]]; then COMMAND_ARR+=('--verbose' '--log' 'info') fi systemd_unit="$PKG_DIR/$PKG.service" if [[ -e "${systemd_unit}" ]]; then COMMAND_ARR+=('--after-install' "${WORKSPACE}/build/go-python-package-scripts/postinst") COMMAND_ARR+=('--before-remove' "${WORKSPACE}/build/go-python-package-scripts/prerm") fi case "$package_format" in deb) COMMAND_ARR+=( # Avoid warning --deb-no-default-config-files ) ;; rpm) COMMAND_ARR+=( # Conflict with older packages we used to publish --conflicts "rh-python36-python-$PKG" # Do not generate /usr/lib/.build-id links on RH8+ # (otherwise our packages conflict with platform-python) --rpm-rpmbuild-define "_build_id_links none" ) ;; esac # Append --depends X and other arguments specified by fpm-info.sh in # the package source dir. These are added last so they can override # the arguments added by this script. declare -a fpm_args=() declare -a fpm_depends=() fpminfo="$PKG_DIR/fpm-info.sh" if [[ -e "$fpminfo" ]]; then echo "Loading fpm overrides from $fpminfo" if ! source "$fpminfo"; then echo "Error, unable to source $WORKSPACE/$PKG_DIR/fpm-info.sh for $PKG" exit 1 fi fi for i in "${fpm_depends[@]}"; do COMMAND_ARR+=('--depends' "$i") done # make sure the systemd service file ends up in the right place # used by arvados-docker-cleaner if [[ -e "${systemd_unit}" ]]; then COMMAND_ARR+=("share/doc/$PKG/$PKG.service=/lib/systemd/system/$PKG.service") fi COMMAND_ARR+=("${fpm_args[@]}") while read -d "" binpath; do COMMAND_ARR+=("$binpath=/usr/$binpath") done < <("$venv_dir/bin/python3" "$WORKSPACE/build/pypkg_info.py" --delimiter=\\0 binfiles "$PKG") # the python3-arvados-cwl-runner package comes with cwltool, expose that version if [[ "$PKG" == arvados-cwl-runner ]]; then COMMAND_ARR+=("bin/cwltool=/usr/bin/cwltool") fi COMMAND_ARR+=(".=$sys_venv_dir") debug_echo -e "\n${COMMAND_ARR[@]}\n" FPM_RESULTS=$("${COMMAND_ARR[@]}") FPM_EXIT_CODE=$? # if something went wrong and debug is off, print out the fpm command that errored if ! fpm_verify $FPM_EXIT_CODE $FPM_RESULTS && [[ "$STDOUT_IF_DEBUG" == "/dev/null" ]]; then echo "fpm returned an error executing the command:" echo echo -e "\n${COMMAND_ARR[@]}\n" else ls "$PYTHON_BUILDROOT"/*."$package_format" mv "$PYTHON_BUILDROOT"/*."$package_format" "$WORKSPACE/packages/$TARGET/" fi echo } # Build packages for everything fpm_build() { # Source dir where fpm-info.sh (if any) will be found. SRC_DIR=$1 shift # The package source. Depending on the source type, this can be a # path, or the name of the package in an upstream repository (e.g., # pip). PACKAGE=$1 shift # The name of the package to build. PACKAGE_NAME=$1 shift # The type of source package. Passed to fpm -s. Default "dir". PACKAGE_TYPE=${1:-dir} shift # Optional: the package version number. Passed to fpm -v. VERSION=$1 shift if [[ -n "$ONLY_BUILD" ]] && [[ "$PACKAGE_NAME" != "$ONLY_BUILD" ]] && [[ "$PACKAGE" != "$ONLY_BUILD" ]] ; then return 0 fi local default_iteration_value="$(default_iteration "$PACKAGE" "$VERSION" "$PACKAGE_TYPE")" declare -a COMMAND_ARR=("fpm" "-s" "$PACKAGE_TYPE" "-t" "$FORMAT") if [ python = "$PACKAGE_TYPE" ] && [ deb = "$FORMAT" ]; then # Dependencies are built from setup.py. Since setup.py will never # refer to Debian package iterations, it doesn't make sense to # enforce those in the .deb dependencies. COMMAND_ARR+=(--deb-ignore-iteration-in-dependencies) fi if [[ "$DEBUG" != "0" ]]; then COMMAND_ARR+=('--verbose' '--log' 'info') fi if [[ -n "$PACKAGE_NAME" ]]; then COMMAND_ARR+=('-n' "$PACKAGE_NAME") fi if [[ "$MAINTAINER" != "" ]]; then COMMAND_ARR+=('--maintainer' "$MAINTAINER") fi if [[ "$VENDOR" != "" ]]; then COMMAND_ARR+=('--vendor' "$VENDOR") fi if [[ "$VERSION" != "" ]]; then COMMAND_ARR+=('-v' "$VERSION") fi if [[ -n "$default_iteration_value" ]]; then # We can always add an --iteration here. If another one is specified in $@, # that will take precedence, as desired. COMMAND_ARR+=(--iteration "$default_iteration_value") fi # Append --depends X and other arguments specified by fpm-info.sh in # the package source dir. These are added last so they can override # the arguments added by this script. declare -a fpm_args=() declare -a build_depends=() declare -a fpm_depends=() declare -a fpm_conflicts=() declare -a fpm_exclude=() if [[ ! -d "$SRC_DIR" ]]; then echo >&2 "BUG: looking in wrong dir for fpm-info.sh: $pkgdir" exit 1 fi fpminfo="${SRC_DIR}/fpm-info.sh" if [[ -e "$fpminfo" ]]; then debug_echo "Loading fpm overrides from $fpminfo" source "$fpminfo" fi for pkg in "${build_depends[@]}"; do if [[ $TARGET =~ debian|ubuntu ]]; then pkg_deb=$(ls "$WORKSPACE/packages/$TARGET/$pkg_"*.deb | sort -rg | awk 'NR==1') if [[ -e $pkg_deb ]]; then echo "Installing build_dep $pkg from $pkg_deb" dpkg -i "$pkg_deb" else echo "Attemping to install build_dep $pkg using apt-get" apt-get install -y "$pkg" fi apt-get -y -f install else pkg_rpm=$(ls "$WORKSPACE/packages/$TARGET/$pkg"-[0-9]*.rpm | sort -rg | awk 'NR==1') if [[ -e $pkg_rpm ]]; then echo "Installing build_dep $pkg from $pkg_rpm" rpm -i "$pkg_rpm" else echo "Attemping to install build_dep $pkg" rpm -i "$pkg" fi fi done for i in "${fpm_depends[@]}"; do COMMAND_ARR+=('--depends' "$i") done for i in "${fpm_conflicts[@]}"; do COMMAND_ARR+=('--conflicts' "$i") done for i in "${fpm_exclude[@]}"; do COMMAND_ARR+=('--exclude' "$i") done COMMAND_ARR+=("${fpm_args[@]}") # Append remaining function arguments directly to fpm's command line. for i; do COMMAND_ARR+=("$i") done COMMAND_ARR+=("$PACKAGE") debug_echo -e "\n${COMMAND_ARR[@]}\n" FPM_RESULTS=$("${COMMAND_ARR[@]}") FPM_EXIT_CODE=$? echo "fpm: exit code $FPM_EXIT_CODE" >>$STDOUT_IF_DEBUG echo "$FPM_RESULTS" >>$STDOUT_IF_DEBUG fpm_verify $FPM_EXIT_CODE $FPM_RESULTS # if something went wrong and debug is off, print out the fpm command that errored if [[ 0 -ne $? ]] && [[ "$STDOUT_IF_DEBUG" == "/dev/null" ]]; then echo -e "\n${COMMAND_ARR[@]}\n" fi } # verify build results fpm_verify () { FPM_EXIT_CODE=$1 shift FPM_RESULTS=$@ FPM_PACKAGE_NAME='' if [[ $FPM_RESULTS =~ ([A-Za-z0-9_\.~-]*\.)(deb|rpm) ]]; then FPM_PACKAGE_NAME=${BASH_REMATCH[1]}${BASH_REMATCH[2]} fi if [[ "$FPM_PACKAGE_NAME" == "" ]]; then EXITCODE=1 echo echo "Error: $PACKAGE: Unable to figure out package name from fpm results:" echo echo $FPM_RESULTS echo return 1 elif [[ "$FPM_RESULTS" =~ "File already exists" ]]; then echo "Package $FPM_PACKAGE_NAME exists, not rebuilding" return 0 elif [[ 0 -ne "$FPM_EXIT_CODE" ]]; then EXITCODE=1 echo "Error building package for $1:\n $FPM_RESULTS" return 1 fi } install_package() { PACKAGES=$@ if [[ "$FORMAT" == "deb" ]]; then $SUDO apt-get install $PACKAGES --yes elif [[ "$FORMAT" == "rpm" ]]; then $SUDO yum -q -y install $PACKAGES fi } title() { printf '%s %s\n' "=======" "$1" } checkexit() { if [[ "$1" != "0" ]]; then title "$2 -- FAILED" failures+=("$2 (`timer`)") else successes+=("$2 (`timer`)") fi } timer_reset() { t0=$SECONDS } timer() { if [[ -n "$t0" ]]; then echo -n "$(($SECONDS - $t0))s" fi } report_outcomes() { for x in "${successes[@]}" do echo "Pass: $x" done if [[ ${#failures[@]} == 0 ]] then if [[ ${#successes[@]} != 0 ]]; then echo "All test suites passed." fi else echo "Failures (${#failures[@]}):" for x in "${failures[@]}" do echo "Fail: $x" done fi }