[arvados-dev] updated: cabe1bdef9e19b9a983ae35a28b8cd346fae8b19
git repository hosting
git at public.arvados.org
Fri Dec 29 15:05:26 UTC 2023
Summary of changes:
jenkins/run_upload_packages.py | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
via cabe1bdef9e19b9a983ae35a28b8cd346fae8b19 (commit)
from e63e91973d53cfa6769e18d0fb4cbf90808e1d21 (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 cabe1bdef9e19b9a983ae35a28b8cd346fae8b19
Author: Brett Smith <brett.smith at curii.com>
Date: Fri Dec 29 09:59:38 2023 -0500
20846: Add debian12 and ubuntu2204 upload targets
I also checked testing_to_stable_publish_packages.sh and
upload_packages_testing_to_stable.sh but there doesn't seem to be
anything to update in those. They seem to default to working on
deb-based distributions just fine.
Refs #20846.
Arvados-DCO-1.1-Signed-off-by: Brett Smith <brett.smith at curii.com>
diff --git a/jenkins/run_upload_packages.py b/jenkins/run_upload_packages.py
index 7ed9c16..d199197 100755
--- a/jenkins/run_upload_packages.py
+++ b/jenkins/run_upload_packages.py
@@ -227,8 +227,10 @@ aptly publish update "$DISTNAME" filesystem:"${DISTNAME%-*}":
self.TARGET_DISTNAMES = {
'debian10': 'buster-'+repo,
'debian11': 'bullseye-'+repo,
+ 'debian12': 'bookworm-'+repo,
'ubuntu1804': 'bionic-'+repo,
'ubuntu2004': 'focal-'+repo,
+ 'ubuntu2204': 'jammy-'+repo,
}
def post_uploads(self, paths):
@@ -306,7 +308,10 @@ def parse_arguments(arguments):
if args.workspace is None:
parser.error("workspace not set from command line or environment")
- for target in ['debian10', 'debian11', 'ubuntu1804', 'ubuntu2004']:
+ for target in [
+ 'debian10', 'debian11', 'debian12',
+ 'ubuntu1804', 'ubuntu2004', 'ubuntu2204',
+ ]:
PACKAGE_SUITES[target] = _define_suite(
DebianPackageSuite, os.path.join('packages', target, '*.deb'),
target=target, repo=args.repo)
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list