20797: Add support for rocky8 upload target 20797-rh8-packages
authorBrett Smith <brett.smith@curii.com>
Tue, 1 Aug 2023 18:52:49 +0000 (14:52 -0400)
committerBrett Smith <brett.smith@curii.com>
Tue, 1 Aug 2023 18:52:49 +0000 (14:52 -0400)
Arvados-DCO-1.1-Signed-off-by: Brett Smith <brett.smith@curii.com>

jenkins/run_upload_packages.py

index 6f695b7fc73b1acd41ecf219c36b9a6b8df7d1c0..7ed9c1653755fb4fcf9af6bf43fc411e590ba401 100755 (executable)
@@ -251,6 +251,7 @@ createrepo -c ~/.createrepo-cache --update "$REPODIR"
         super().__init__(glob_root, rel_globs, target, ssh_host, ssh_opts)
         self.TARGET_REPODIRS = {
             'centos7': 'CentOS/7/%s/x86_64/' % repo,
+            'rocky8': 'CentOS/8/%s/x86_64/' % repo,
         }
 
     def post_uploads(self, paths):
@@ -309,7 +310,7 @@ def parse_arguments(arguments):
         PACKAGE_SUITES[target] = _define_suite(
             DebianPackageSuite, os.path.join('packages', target, '*.deb'),
             target=target, repo=args.repo)
-    for target in ['centos7']:
+    for target in ['centos7', 'rocky8']:
         PACKAGE_SUITES[target] = _define_suite(
             RedHatPackageSuite, os.path.join('packages', target, '*.rpm'),
             target=target, repo=args.repo)