X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/89bc5fc945891bec4322fe14b6d11d0cdc1ca267..98e4a92f007533b2924604e4f83da9a6d15e0ef3:/build/run-build-packages.sh diff --git a/build/run-build-packages.sh b/build/run-build-packages.sh index f1cc6965cd..a07b308179 100755 --- a/build/run-build-packages.sh +++ b/build/run-build-packages.sh @@ -19,7 +19,7 @@ Options: --debug Output debug information (default: false) --target - Distribution to build packages for (default: debian8) + Distribution to build packages for (default: debian9) --only-build Build only a specific package (or $ONLY_BUILD from environment) --command @@ -30,9 +30,19 @@ WORKSPACE=path Path to the Arvados source tree to build packages from EOF -EXITCODE=0 +# Begin of user configuration + +# set to --no-cache-dir to disable pip caching +CACHE_FLAG= + +MAINTAINER="Ward Vandewege " +VENDOR="Veritas Genetics, Inc." + +# End of user configuration + DEBUG=${ARVADOS_DEBUG:-0} -TARGET=debian8 +EXITCODE=0 +TARGET=debian9 COMMAND= PARSEDOPTS=$(getopt --name "$0" --longoptions \ @@ -117,7 +127,7 @@ case "$TARGET" in PYTHON2_INSTALL_LIB=lib/python$PYTHON2_VERSION/site-packages PYTHON3_PACKAGE=$(rpm -qf "$(which python$PYTHON3_VERSION)" --queryformat '%{NAME}\n') PYTHON3_PKG_PREFIX=$PYTHON3_PACKAGE - PYTHON3_PREFIX=/opt/rh/rh-python35/root/usr + PYTHON3_PREFIX=/opt/rh/rh-python36/root/usr PYTHON3_INSTALL_LIB=lib/python$PYTHON3_VERSION/site-packages export PYCURL_SSL_LIBRARY=nss ;; @@ -215,7 +225,7 @@ if [[ -z "$ONLY_BUILD" ]] || [[ "libarvados-perl" = "$ONLY_BUILD" ]] ; then perl Makefile.PL INSTALL_BASE=install >"$STDOUT_IF_DEBUG" && \ make install INSTALLDIRS=perl >"$STDOUT_IF_DEBUG" && \ fpm_build install/lib/=/usr/share libarvados-perl \ - "Curoverse, Inc." dir "$(version_from_git)" install/man/=/usr/share/man \ + dir "$(version_from_git)" install/man/=/usr/share/man \ "$WORKSPACE/apache-2.0.txt=/usr/share/doc/libarvados-perl/apache-2.0.txt" && \ mv --no-clobber libarvados-perl*.$FORMAT "$WORKSPACE/packages/$TARGET/" fi @@ -238,21 +248,6 @@ handle_ruby_gem arvados-login-sync # Python packages debug_echo -e "\nPython packages\n" -cd "$WORKSPACE/sdk/pam" -handle_python_package - -cd "$WORKSPACE/sdk/python" -handle_python_package - -cd "$WORKSPACE/sdk/cwl" -handle_python_package - -cd "$WORKSPACE/services/fuse" -handle_python_package - -cd "$WORKSPACE/services/nodemanager" -handle_python_package - # arvados-src ( cd "$WORKSPACE" @@ -277,25 +272,23 @@ handle_python_package cd "$SRC_BUILD_DIR" PKG_VERSION=$(version_from_git) cd $WORKSPACE/packages/$TARGET - 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" + fpm_build $SRC_BUILD_DIR/=/usr/local/arvados/src arvados-src '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" rm -rf "$SRC_BUILD_DIR" - fi ) # Go binaries cd $WORKSPACE/packages/$TARGET export GOPATH=$(mktemp -d) -go get github.com/kardianos/govendor package_go_binary cmd/arvados-client arvados-client \ "Arvados command line tool (beta)" package_go_binary cmd/arvados-server arvados-server \ "Arvados server daemons" package_go_binary cmd/arvados-server arvados-controller \ "Arvados cluster controller daemon" -package_go_binary sdk/go/crunchrunner crunchrunner \ - "Crunchrunner executes a command inside a container and uploads the output" +package_go_binary cmd/arvados-server arvados-dispatch-cloud \ + "Arvados cluster cloud dispatch" package_go_binary services/arv-git-httpd arvados-git-httpd \ "Provide authenticated http access to Arvados-hosted git repositories" package_go_binary services/crunch-dispatch-local crunch-dispatch-local \ @@ -327,23 +320,14 @@ package_go_binary tools/keep-rsync keep-rsync \ package_go_binary tools/keep-exercise keep-exercise \ "Performance testing tool for Arvados Keep" -# The Python SDK +# The Python SDK - Should be built first because it's needed by others fpm_build_virtualenv "arvados-python-client" "sdk/python" -fpm_build_virtualenv "arvados-python-client" "sdk/python" "python3" # Arvados cwl runner fpm_build_virtualenv "arvados-cwl-runner" "sdk/cwl" # The PAM module -if [[ $TARGET =~ debian|ubuntu ]]; then - cd $WORKSPACE/packages/$TARGET - rm -rf "$WORKSPACE/sdk/pam/build" - libpam_arvados_version=$(awk '($1 == "Version:"){print $2}' $WORKSPACE/sdk/pam/arvados_pam.egg-info/PKG-INFO) - test_package_presence libpam-arvados "$libpam_arvados_version" python - if [[ "$?" == "0" ]]; then - fpm_build $WORKSPACE/sdk/pam libpam-arvados 'Curoverse, Inc.' 'python' "$libpam_arvados_version" "--url=https://arvados.org" "--description=PAM module for authenticating shell logins using Arvados API tokens" --depends libpam-python - fi -fi +fpm_build_virtualenv "libpam-arvados" "sdk/pam" # The FUSE driver fpm_build_virtualenv "arvados-fuse" "services/fuse" @@ -351,36 +335,28 @@ fpm_build_virtualenv "arvados-fuse" "services/fuse" # The node manager fpm_build_virtualenv "arvados-node-manager" "services/nodemanager" -# The Docker image cleaner -fpm_build_virtualenv "arvados-docker-cleaner" "services/dockercleaner" "python3" - # The Arvados crunchstat-summary tool fpm_build_virtualenv "crunchstat-summary" "tools/crunchstat-summary" -# Forked libcloud -if test_package_presence "$PYTHON2_PKG_PREFIX"-apache-libcloud "$LIBCLOUD_PIN" python 2 -then - LIBCLOUD_DIR=$(mktemp -d) - ( - cd $LIBCLOUD_DIR - git clone $DASHQ_UNLESS_DEBUG https://github.com/curoverse/libcloud.git . - git checkout $DASHQ_UNLESS_DEBUG apache-libcloud-$LIBCLOUD_PIN - # libcloud is absurdly noisy without -q, so force -q here - OLD_DASHQ_UNLESS_DEBUG=$DASHQ_UNLESS_DEBUG - DASHQ_UNLESS_DEBUG=-q - handle_python_package - DASHQ_UNLESS_DEBUG=$OLD_DASHQ_UNLESS_DEBUG - ) +# The Python SDK - Python3 package +fpm_build_virtualenv "arvados-python-client" "sdk/python" "python3" - # libcloud >= 2.3.0 now requires python-requests 2.4.3 or higher, otherwise - # it throws - # ImportError: No module named packages.urllib3.poolmanager - # when loaded. We only see this problem on ubuntu1404, because that is our - # only supported distribution that ships with a python-requests older than - # 2.4.3. - fpm_build $LIBCLOUD_DIR "$PYTHON2_PKG_PREFIX"-apache-libcloud "" python "" --iteration 2 --depends 'python-requests >= 2.4.3' - rm -rf $LIBCLOUD_DIR +# The Docker image cleaner +fpm_build_virtualenv "arvados-docker-cleaner" "services/dockercleaner" "python3" + +# The cwltest package, which lives out of tree +cd "$WORKSPACE" +if [[ -e "$WORKSPACE/cwltest" ]]; then + rm -rf "$WORKSPACE/cwltest" fi +git clone https://github.com/common-workflow-language/cwltest.git +# signal to our build script that we want a cwltest executable installed in /usr/bin/ +mkdir cwltest/bin && touch cwltest/bin/cwltest +fpm_build_virtualenv "cwltest" "cwltest" +rm -rf "$WORKSPACE/cwltest" + +calculate_go_package_version arvados_server_version cmd/arvados-server +arvados_server_iteration=$(default_iteration "arvados-server" "$arvados_server_version" "go") # Build the API server package test_rails_package_presence arvados-api-server "$WORKSPACE/services/api" @@ -388,7 +364,7 @@ if [[ "$?" == "0" ]]; then 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" + --license="GNU Affero General Public License, version 3.0" --depends "arvados-server = ${arvados_server_version}-${arvados_server_iteration}" fi # Build the workbench server package @@ -396,6 +372,22 @@ test_rails_package_presence arvados-workbench "$WORKSPACE/apps/workbench" if [[ "$?" == "0" ]] ; then ( set -e + + # The workbench package has a build-time dependency on the arvados-server + # package for config manipulation, so install it first. + cd $WORKSPACE/cmd/arvados-server + get_complete_package_name arvados_server_pkgname arvados-server ${arvados_server_version} go + + arvados_server_pkg_path="$WORKSPACE/packages/$TARGET/${arvados_server_pkgname}" + if [[ ! -e ${arvados_server_pkg_path} ]]; then + arvados_server_pkg_path="$WORKSPACE/packages/$TARGET/processed/${arvados_server_pkgname}" + fi + if [[ "$FORMAT" == "deb" ]]; then + dpkg -i ${arvados_server_pkg_path} + else + rpm -i ${arvados_server_pkg_path} + fi + cd "$WORKSPACE/apps/workbench" # We need to bundle to be ready even when we build a package without vendor directory @@ -408,17 +400,17 @@ if [[ "$?" == "0" ]] ; then rm -rf tmp mkdir tmp - # Set up application.yml and production.rb so that asset precompilation works - \cp config/application.yml.example config/application.yml -f - \cp config/environments/production.rb.example config/environments/production.rb -f - sed -i 's/secret_token: ~/secret_token: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx/' config/application.yml - sed -i 's/keep_web_url: false/keep_web_url: exampledotcom/' config/application.yml + # Set up an appropriate config.yml + arvados-server config-dump -config <(cat /etc/arvados/config.yml 2>/dev/null || echo "Clusters: {zzzzz: {}}") > /tmp/x + mkdir -p /etc/arvados/ + mv /tmp/x /etc/arvados/config.yml + perl -p -i -e 'BEGIN{undef $/;} s/WebDAV(.*?):\n( *)ExternalURL: ""/WebDAV$1:\n$2ExternalURL: "example.com"/g' /etc/arvados/config.yml - RAILS_ENV=production RAILS_GROUPS=assets bundle exec rake npm:install >/dev/null - RAILS_ENV=production RAILS_GROUPS=assets bundle exec rake assets:precompile >/dev/null + RAILS_ENV=production RAILS_GROUPS=assets bundle exec rake npm:install >"$STDOUT_IF_DEBUG" + RAILS_ENV=production RAILS_GROUPS=assets bundle exec rake assets:precompile >"$STDOUT_IF_DEBUG" # Remove generated configuration files so they don't go in the package. - rm config/application.yml config/environments/production.rb + rm -rf /etc/arvados/ ) if [[ "$?" != "0" ]]; then @@ -428,7 +420,7 @@ if [[ "$?" == "0" ]] ; then handle_rails_package arvados-workbench "$WORKSPACE/apps/workbench" \ "$WORKSPACE/agpl-3.0.txt" --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" + --license="GNU Affero General Public License, version 3.0" --depends "arvados-server = ${arvados_server_version}-${arvados_server_iteration}" fi fi