2 # Copyright (C) The Arvados Authors. All rights reserved.
4 # SPDX-License-Identifier: AGPL-3.0
6 # This script publishes packages from our testing repo to the prod repo (#11572 and #11878)
7 # Parameters (both are mandatory):
8 # --packages list of packages, comma separated, to move from dev_repo_dir to prod_repo_dir
9 # --distros list of distros, comma separated, to which to publish packages
11 RPM_REPO_BASE_DIR="/var/www/rpm.arvados.org"
13 ### MAIN ####################################################################
16 echo " $0 --distros <distroA,distroB,...,distroN> --packages <packageA,packageB,...,packageN>"
17 echo " (both parameters are mandatory)"
23 while [ ${#} -gt 0 ]; do
25 --packages) packages="$2"; shift 2 ;;
26 --distros) distros="$2"; shift 2 ;;
27 *) echo "$0: Unrecognized option: $1" >&2; exit 1;
31 # Make sure the variables are set or provide an example of how to use them
32 if [ -z "${packages}" ]; then
33 echo "You must provide a comma-separated list of packages to publish, ie."
34 echo "* Debian: --packages=arvados-ws_0.1.20170906144951.22418ed6e-1_amd64.deb,keep-exercise_*,*170906144951*"
35 echo "* Centos: --packages=arvados-ws_0.1.20170906144951.22418ed6e-1.x86_64.rpm,keep-exercise_0.1.20170906144951.22418ed6e-1.x86_64.rpm,crunch-dispatch-local_0.1.20170906144951.22418ed6e-1.x86_64.rpm"
38 if [ -z "${distros}" ]; then
39 echo "You must provide a space-separated list of LSB distribution codenames to which you want to publish to, ie."
40 echo "* Debian: --distros=jessie,xenial,stretch,etc."
41 echo "* Centos: --distros=centos7,etc."
45 DIST_LIST=$(echo ${distros} | sed s/,/' '/g |tr '[:upper:]' '[:lower:]')
46 PACKAGES=$(echo ${packages} | sed s/,/' '/g)
48 if ( echo ${DIST_LIST} |grep -q centos ); then
49 for DISTNAME in ${DIST_LIST}; do
52 DIST_DIR_TEST='7/testing/x86_64'
53 DIST_DIR_PROD='7/os/x86_64'
56 echo "Only centos7 is accepted right now"
60 cd ${RPM_REPO_BASE_DIR}
61 mkdir -p ${RPM_REPO_BASE_DIR}/CentOS/${DIST_DIR_PROD}
62 echo "Copying packages ..."
63 for P in ${PACKAGES}; do
64 cp ${RPM_REPO_BASE_DIR}/CentOS/${DIST_DIR_TEST}/${P} ${RPM_REPO_BASE_DIR}/CentOS/${DIST_DIR_PROD}/
66 FAILED_PACKAGES="${FAILED_PACKAGES} ${P}"
69 echo "Recreating repo CentOS/${DIST_DIR_PROD} ..."
70 createrepo ${RPM_REPO_BASE_DIR}/CentOS/${DIST_DIR_PROD}
73 for DISTNAME in ${DIST_LIST}; do
75 echo "Copying packages ..."
76 for P in ${PACKAGES}; do
77 aptly repo copy ${DISTNAME}-testing ${DISTNAME} $(basename ${P})
79 echo "Publishing ${DISTNAME} repository..."
80 aptly publish update ${DISTNAME} filesystem:${DISTNAME}:
84 if [ "${FAILED_PACKAGES}" != "" ]; then
85 echo "PACKAGES THAT FAILED TO PUBLISH"
86 echo "${FAILED_PACKAGES}"
88 echo "All packages published correctly"