[ARVADOS-DEV] updated: 38c4ad77cef2b737bb9bcda9224e9412ec937012
Git user
git at public.arvados.org
Thu Feb 25 18:24:01 UTC 2021
Summary of changes:
jenkins/testing_to_stable_publish_packages.sh | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
via 38c4ad77cef2b737bb9bcda9224e9412ec937012 (commit)
from 76e93fdb16b22280c2ed396e1be606483771db82 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
commit 38c4ad77cef2b737bb9bcda9224e9412ec937012
Author: Ward Vandewege <ward at curii.com>
Date: Thu Feb 25 13:22:42 2021 -0500
When a package can't be published, print which distribution the error is
with.
refs #17218
Arvados-DCO-1.1-Signed-off-by: Ward Vandewege <ward at curii.com>
diff --git a/jenkins/testing_to_stable_publish_packages.sh b/jenkins/testing_to_stable_publish_packages.sh
index 12ca800..dcc8f41 100755
--- a/jenkins/testing_to_stable_publish_packages.sh
+++ b/jenkins/testing_to_stable_publish_packages.sh
@@ -79,11 +79,13 @@ else
for P in ${DEBIAN_PACKAGES}; do
aptly repo search ${DISTNAME}-testing "${P}"
if [ $? -ne 0 ]; then
- FAILED_PACKAGES="${FAILED_PACKAGES} ${P}"
+ echo "ERROR: unable to find a match for '${P}' in ${DISTNAME}-testing"
+ FAILED_PACKAGES="${FAILED_PACKAGES} ${DISTNAME}-testing:${P}"
else
aptly repo copy ${DISTNAME}-testing ${DISTNAME} "${P}"
if [ $? -ne 0 ]; then
- FAILED_PACKAGES="${FAILED_PACKAGES} ${P}"
+ echo "ERROR: unable to copy '${P}' from ${DISTNAME}-testing to ${DISTNAME}"
+ FAILED_PACKAGES="${FAILED_PACKAGES} ${DISTNAME}-testing:${P}"
fi
fi
done
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list