#10004 Adapt the FTI reporting to work on Fedora 35 and 34
Merged 3 years ago by humaton. Opened 3 years ago by churchyard.
churchyard/releng fti_f35  into  main

@@ -5,6 +5,6 @@ 

  

  P.S. The data was generated solely from koji buildroot, so it might be newer than the latest compose or the content on mirrors.

  

- P.P.S. If this bug has been reported in the middle of upgrading multiple dependent packages, please consider using side tags: https://docs.fedoraproject.org/en-US/rawhide-gating/multi-builds/

+ P.P.S. If this bug has been reported in the middle of upgrading multiple dependent packages, please consider using side tags: https://docs.fedoraproject.org/en-US/fesco/Updates_Policy/#updating-inter-dependent-packages

  

  Thanks!

@@ -16,16 +16,16 @@ 

  

  NOW = datetime.datetime.now(datetime.timezone.utc)

  TRACKERS = {

-     "F31FailsToInstall": 1700324,

      "F32FailsToInstall": 1750909,

      "F33FailsToInstall": 1803235,

      "F34FailsToInstall": 1868279,

-     "F31FTBFS": 1700317,

+     "F35FailsToInstall": 1927313,

      "F32FTBFS": 1750908,

      "F33FTBFS": 1803234,

      "F34FTBFS": 1868278,

+     "F35FTBFS": 1927309,

  }

- RAWHIDE = "34"

+ RAWHIDE = "35"

  

  

  def _bzdate_to_python(date):
@@ -219,7 +219,7 @@ 

  @click.option(

      "--release",

      type=click.Choice(sorted(set(t[1:3] for t in TRACKERS.keys()))),

-     default="34",

+     default=RAWHIDE,

      show_default=True,

      help="Fedora release",

  )
@@ -227,7 +227,9 @@ 

      pool = solv.Pool()

      pool.setarch()

  

-     for r in ("koji",):  # "koji-source"):

+     reponame = f"koji{release}" if release != RAWHIDE else "koji"

+ 

+     for r in (reponame,):  # f"{reponame}-source"):

          repo = pool.add_repo(r)

          f = solv.xfopen(f"/var/cache/dnf/{r}.solv")

          repo.add_solv(f)

no initial comment

1 new commit added

  • Update the side-tag updates link to lead to the policy
3 years ago

rebased onto 4a906faa01b68f7559cc6df982a99a580b0da73b

3 years ago

rebased onto 36b807ed6101e16d7973d5bbc8e61c540ba8c5b4

3 years ago

How can I help get this merged?

Can you rebase, please?

rebased onto 08ee261

3 years ago

Just did, via the Pagure web interface.

Pull-Request has been merged by humaton

3 years ago