X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/278e53556cb9623c0450cae6b9e21bab682be58f..b7c46875f592b2f959f504e7f583979a594d528f:/build/run-library.sh diff --git a/build/run-library.sh b/build/run-library.sh index 8857d5b635..3e6c9f8584 100755 --- a/build/run-library.sh +++ b/build/run-library.sh @@ -40,27 +40,23 @@ EOF format_last_commit_here() { local format="$1"; shift - TZ=UTC git log -n1 --first-parent "--format=format:$format" . + local dir="${1:-.}"; shift + TZ=UTC git log -n1 --first-parent "--format=format:$format" "$dir" } version_from_git() { # Output the version being built, or if we're building a # dev/prerelease, output a version number based on the git log for - # the current working directory. + # the given $subdir. + local subdir="$1"; shift if [[ -n "$ARVADOS_BUILDING_VERSION" ]]; then echo "$ARVADOS_BUILDING_VERSION" return fi - local git_ts git_hash prefix - if [[ -n "$1" ]] ; then - prefix="$1" - else - prefix="0.1" - fi - - declare $(format_last_commit_here "git_ts=%ct git_hash=%h") - ARVADOS_BUILDING_VERSION="$(git tag -l |sort -V -r |head -n1).$(date -ud "@$git_ts" +%Y%m%d%H%M%S)" + local git_ts git_hash + declare $(format_last_commit_here "git_ts=%ct git_hash=%h" "$subdir") + ARVADOS_BUILDING_VERSION="$($WORKSPACE/build/version-at-commit.sh $git_hash)" echo "$ARVADOS_BUILDING_VERSION" } @@ -69,11 +65,24 @@ nohash_version_from_git() { echo "$ARVADOS_BUILDING_VERSION" return fi - version_from_git $1 | cut -d. -f1-4 + version_from_git | cut -d. -f1-4 } timestamp_from_git() { - format_last_commit_here "%ct" + local subdir="$1"; shift + format_last_commit_here "%ct" "$subdir" +} + +calculate_python_sdk_cwl_package_versions() { + python_sdk_ts=$(cd sdk/python && timestamp_from_git) + cwl_runner_ts=$(cd sdk/cwl && timestamp_from_git) + + python_sdk_version=$(cd sdk/python && nohash_version_from_git) + cwl_runner_version=$(cd sdk/cwl && nohash_version_from_git) + + if [[ $python_sdk_ts -gt $cwl_runner_ts ]]; then + cwl_runner_version=$python_sdk_version + fi } handle_python_package () { @@ -108,33 +117,36 @@ calculate_go_package_version() { # 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 src_path="$1"; shift + local oldpwd="$PWD" - cd "$WORKSPACE/$src_path" + cd "$WORKSPACE" go mod download - local version="$(version_from_git)" - local timestamp="$(timestamp_from_git)" # 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=(vendor) - if grep -qr git.curoverse.com/arvados .; then + declare -a checkdirs=(go.mod go.sum) + while [ -n "$1" ]; do + checkdirs+=("$1") + shift + done + if grep -qr git.arvados.org/arvados .; then checkdirs+=(sdk/go lib) fi + local timestamp=0 for dir in ${checkdirs[@]}; do - cd "$WORKSPACE/$dir" - ts="$(timestamp_from_git)" + cd "$WORKSPACE" + ts="$(timestamp_from_git "$dir")" if [[ "$ts" -gt "$timestamp" ]]; then - version=$(version_from_git) + version=$(version_from_git "$dir") timestamp="$ts" fi done - + cd "$oldpwd" __returnvar="$version" } -# Usage: package_go_binary services/foo arvados-foo "Compute foo to arbitrary precision" +# Usage: package_go_binary services/foo arvados-foo "Compute foo to arbitrary precision" [apache-2.0.txt] package_go_binary() { local src_path="$1"; shift local prog="$1"; shift @@ -161,7 +173,7 @@ package_go_binary() { return 1 fi - go get -ldflags "-X git.curoverse.com/arvados.git/lib/cmd.version=${go_package_version} -X main.version=${go_package_version}" "git.curoverse.com/arvados.git/$src_path" + go get -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" local -a switches=() systemd_unit="$WORKSPACE/${src_path}/${prog}.service" @@ -173,7 +185,37 @@ package_go_binary() { fi switches+=("$WORKSPACE/${license_file}=/usr/share/doc/$prog/${license_file}") - fpm_build "$GOPATH/bin/${basename}=/usr/bin/${prog}" "${prog}" dir "${go_package_version}" "--url=https://arvados.org" "--license=GNU Affero General Public License, version 3.0" "--description=${description}" "${switches[@]}" + fpm_build "${WORKSPACE}/${src_path}" "$GOPATH/bin/${basename}=/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 "Arvados foo library" +package_go_so() { + local src_path="$1"; shift + local sofile="$1"; shift + local pkg="$1"; shift + local description="$1"; shift + + 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/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() { @@ -208,20 +250,14 @@ _build_rails_package_scripts() { 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" -o $pkgname = "arvados-workbench" ] ; then - local P="$PWD" - cd $WORKSPACE - local arvados_server_version - calculate_go_package_version arvados_server_version cmd/arvados-server - cd $P - if [ $arvados_server_version -gt $version ] ; then - version=$arvados_server_version - fi + calculate_go_package_version version cmd/arvados-server "$srcdir" fi echo $version } @@ -238,7 +274,7 @@ test_rails_package_presence() { cd $srcdir - local version="$(rails_package_version $pkgname)" + local version="$(rails_package_version "$pkgname" "$srcdir")" cd $tmppwd @@ -372,7 +408,7 @@ handle_rails_package() { local srcdir="$1"; shift cd "$srcdir" local license_path="$1"; shift - local version="$(rails_package_version $pkgname)" + local version="$(rails_package_version "$pkgname" "$srcdir")" echo "$version" >package-build.version local scripts_dir="$(mktemp --tmpdir -d "$pkgname-XXXXXXXX.scripts")" && \ ( @@ -411,7 +447,7 @@ handle_rails_package() { for exclude in ${exclude_list[@]}; do switches+=(-x "$exclude_root/$exclude") done - fpm_build "${pos_args[@]}" "${switches[@]}" \ + fpm_build "${srcdir}" "${pos_args[@]}" "${switches[@]}" \ -x "$exclude_root/vendor/cache-*" \ -x "$exclude_root/vendor/bundle" "$@" "$license_arg" rm -rf "$scripts_dir" @@ -470,7 +506,7 @@ fpm_build_virtualenv () { fi # arvados-python-client sdist should always be built, to be available - # for other dependant packages. + # for other dependent packages. if [[ -n "$ONLY_BUILD" ]] && [[ "arvados-python-client" != "$PKG" ]] && [[ "$PYTHON_PKG" != "$ONLY_BUILD" ]] && [[ "$PKG" != "$ONLY_BUILD" ]]; then return 0 fi @@ -480,9 +516,9 @@ fpm_build_virtualenv () { rm -rf dist/* # Get the latest setuptools - if ! $pip install $DASHQ_UNLESS_DEBUG $CACHE_FLAG -U setuptools; then + if ! $pip install $DASHQ_UNLESS_DEBUG $CACHE_FLAG -U 'setuptools<45'; then echo "Error, unable to upgrade setuptools with" - echo " $pip install $DASHQ_UNLESS_DEBUG $CACHE_FLAG -U setuptools" + echo " $pip install $DASHQ_UNLESS_DEBUG $CACHE_FLAG -U 'setuptools<45'" exit 1 fi # filter a useless warning (when building the cwltest package) from the stderr output @@ -537,9 +573,9 @@ fpm_build_virtualenv () { fi echo "pip version: `build/usr/share/$python/dist/$PYTHON_PKG/bin/$pip --version`" - if ! build/usr/share/$python/dist/$PYTHON_PKG/bin/$pip install $DASHQ_UNLESS_DEBUG $CACHE_FLAG -U setuptools; then + if ! build/usr/share/$python/dist/$PYTHON_PKG/bin/$pip install $DASHQ_UNLESS_DEBUG $CACHE_FLAG -U 'setuptools<45'; then echo "Error, unable to upgrade setuptools with" - echo " build/usr/share/$python/dist/$PYTHON_PKG/bin/$pip install $DASHQ_UNLESS_DEBUG $CACHE_FLAG -U setuptools" + echo " build/usr/share/$python/dist/$PYTHON_PKG/bin/$pip install $DASHQ_UNLESS_DEBUG $CACHE_FLAG -U 'setuptools<45'" exit 1 fi echo "setuptools version: `build/usr/share/$python/dist/$PYTHON_PKG/bin/$python -c 'import setuptools; print(setuptools.__version__)'`" @@ -568,7 +604,7 @@ fpm_build_virtualenv () { cd build/usr/share/$python/dist/$PYTHON_PKG/ # Replace the shebang lines in all python scripts, and handle the activate - # scripts too This is a functional replacement of the 237 line + # 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). for binfile in `ls bin/`; do @@ -618,7 +654,7 @@ fpm_build_virtualenv () { # 12271 - As FPM-generated packages don't include scripts by default, the # packages cleanup on upgrade depends on files being listed on the %files # section in the generated SPEC files. To remove DIRECTORIES, they need to - # be listed in that sectiontoo, so we need to add this parameter to properly + # be listed in that section too, so we need to add this parameter to properly # remove lingering dirs. But this only works for python2: if used on # python33, it includes dirs like /opt/rh/python33 that belong to # other packages. @@ -626,7 +662,7 @@ fpm_build_virtualenv () { COMMAND_ARR+=('--rpm-auto-add-directories') fi - if [[ "$PKG" == "arvados-python-client" ]]; then + if [[ "$PKG" == "arvados-python-client" ]] || [[ "$PKG" == "arvados-fuse" ]]; then if [[ "$python" == "python2.7" ]]; then COMMAND_ARR+=('--conflicts' "$PYTHON3_PKG_PREFIX-$PKG") else @@ -643,7 +679,8 @@ fpm_build_virtualenv () { COMMAND_ARR+=('-n' "$PYTHON_PKG") COMMAND_ARR+=('-C' "build") - if [[ -e "$WORKSPACE/$PKG_DIR/$PKG.service" ]]; then + systemd_unit="$WORKSPACE/$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 @@ -676,6 +713,12 @@ fpm_build_virtualenv () { COMMAND_ARR+=('--depends' "$i") done + # make sure the systemd service file ends up in the right place + # used by arvados-docker-cleaner and arvados-node-manager + if [[ -e "${systemd_unit}" ]]; then + COMMAND_ARR+=("usr/share/$python/dist/$PKG/share/doc/$PKG/$PKG.service=/lib/systemd/system/$PKG.service") + fi + COMMAND_ARR+=("${fpm_args[@]}") # Make sure to install all our package binaries in /usr/bin. @@ -723,6 +766,9 @@ fpm_build_virtualenv () { # 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). @@ -799,17 +845,15 @@ fpm_build () { declare -a build_depends=() declare -a fpm_depends=() declare -a fpm_exclude=() - declare -a fpm_dirs=( - # source dir part of 'dir' package ("/source=/dest" => "/source"): - "${PACKAGE%%=/*}") - for pkgdir in "${fpm_dirs[@]}"; do - fpminfo="$pkgdir/fpm-info.sh" - if [[ -e "$fpminfo" ]]; then - debug_echo "Loading fpm overrides from $fpminfo" - source "$fpminfo" - break - fi - done + 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') @@ -917,7 +961,9 @@ timer_reset() { } timer() { - echo -n "$(($SECONDS - $t0))s" + if [[ -n "$t0" ]]; then + echo -n "$(($SECONDS - $t0))s" + fi } report_outcomes() {