Skip to content

Commit

Permalink
Add rebuild page for Fedora 39
Browse files Browse the repository at this point in the history
  • Loading branch information
tstellar committed Sep 19, 2023
1 parent 22c2f37 commit 883182a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion update.py
Original file line number Diff line number Diff line change
Expand Up @@ -409,22 +409,25 @@ def get_package_notes(fedora_version):
f37 = CoprResults(u'https://copr.fedorainfracloud.org', '@fedora-llvm-team', 'clang-built-f37')
f37_clang16 = CoprResults(u'https://copr.fedorainfracloud.org', 'tstellar', 'fedora-37-clang-16')
f38 = CoprResults(u'https://copr.fedorainfracloud.org', '@fedora-llvm-team', 'clang-built-f38')
f39 = CoprResults(u'https://copr.fedorainfracloud.org', '@fedora-llvm-team', 'clang-built-f39')

comparisons = [
(KojiResults('f36'), f36),
(KojiResults('f37'), f37),
(KojiResults('f38'), f38),
(KojiResults('f39'), f39),
(f35, f36),
(f36, f37),
(f37, f38),
(f37, f37_clang16)
(f38, f39)
]

# Assume copr-reporter is in the current directory

if len(tags) !=1 and os.path.isdir('./copr-reporter'):

pages = ['f36', 'f37', 'f38', 'f38-llvm17-20230601']
pages = ['f36', 'f37', 'f38', 'f38-llvm17-20230601', 'f39']

print("COPR REPORTER", pages)
old_cwd = os.getcwd()
Expand Down

0 comments on commit 883182a

Please sign in to comment.