From e6b899928b8ff992d48ed38f1e46114b23da1b5a Mon Sep 17 00:00:00 2001 From: Samyak Jain Date: Jan 19 2024 05:14:07 +0000 Subject: Bump massrebuild epoch info by one day - Jan 19 2024 Signed-off-by: Samyak Jain --- diff --git a/scripts/find_failures.py b/scripts/find_failures.py index bc786f2..e8309ec 100755 --- a/scripts/find_failures.py +++ b/scripts/find_failures.py @@ -26,7 +26,7 @@ from requests.packages.urllib3.util.retry import Retry # Some of these could arguably be passed in as args. buildtag = 'f40-rebuild' # tag to check desttag = 'f40' # Tag where fixed builds go -epoch = '2023-07-19 10:30:00.000000' # Date to check for failures from +epoch = '2024-01-19 10:30:00.000000' # Date to check for failures from failures = {} # dict of owners to lists of packages that failed. failed = [] # raw list of failed packages ownerdataurl = 'https://src.fedoraproject.org/extras/pagure_owner_alias.json' diff --git a/scripts/massrebuildsinfo.py b/scripts/massrebuildsinfo.py index 96e08a3..93457b1 100644 --- a/scripts/massrebuildsinfo.py +++ b/scripts/massrebuildsinfo.py @@ -25,7 +25,7 @@ PKG_SKIP_LIST = [ MASSREBUILDS = { "f40":{ "buildtag": 'f40-rebuild', # tag to build from - "epoch": '2024-01-18 10:30:00.000000', # rebuild anything not built after this date + "epoch": '2024-01-19 10:30:00.000000', # rebuild anything not built after this date # rebuild all modules that has run time dependency on this platform, this is used during mass branching time "targets": ['f40-candidate', 'rawhide', 'f40'], # build targets to check for existing builds to skip rebuild diff --git a/scripts/need-rebuild.py b/scripts/need-rebuild.py index e0d24a3..fca7936 100755 --- a/scripts/need-rebuild.py +++ b/scripts/need-rebuild.py @@ -23,7 +23,7 @@ buildtag = 'f40-rebuild' # tag(s) to check target = 'f40' updates = 'f40-candidate' rawhide = 'rawhide' # Change to dist-f13 after we branch -epoch = '2024-01-18 10:30:00.000000' # rebuild anything not built after this date +epoch = '2024-01-19 10:30:00.000000' # rebuild anything not built after this date tobuild = {} # dict of owners to lists of packages needing to be built unbuilt = [] # raw list of unbuilt packages newbuilds = {}