From cf6657f489fab8b53cf7f4124dd87e00014772c0 Mon Sep 17 00:00:00 2001
From: Holger Levsen Reproducible builds enable anyone to reproduce bit by bit identical binary packages from a given source, so that anyone can verify that a given binary derived from the source it was said to be derived. There is a lot more information about reproducible builds on the Debian wiki and on https://reproducible.debian.net. The wiki has a lot more information, eg. why this is useful, what common issues exist and which workaround and solutions are known.Reproducible Coreboot
"
write_page "
"
-write_page " Reproducible Coreboot is an effort to apply this to coreboot. Thus each coreboot.rom is build twice (without payloads), with a few varitations added and then those two ROMs are compared using debbindiff. Please note that the toolchain is not varied at all as the rebuild happens on exactly the same system. More variations are expected to be seen in the wild.
There is a monthly run jenkins job to test the master
branch of coreboot.git. Currently this job is triggered more often though, because this is still under development and brand new. The jenkins job is simply running reproducible_coreboot.sh in a Debian environemnt and this script is solely responsible for creating this page. Feel invited to join #debian-reproducible
(on irc.oftc.net) to request job runs whenever sensible. Patches and other feedback are very much appreciated!
" echo -n "$COREBOOT" >> $PAGE diff --git a/bin/reproducible_scheduler.py b/bin/reproducible_scheduler.py index 4a60fe0f..85e3d60a 100755 --- a/bin/reproducible_scheduler.py +++ b/bin/reproducible_scheduler.py @@ -304,39 +304,12 @@ def scheduler(): # update the scheduled page generate_schedule() # from reproducible_html_indexes # build the kgb message text - message = 'Scheduled in ' + '+'.join(SUITES) + ': ' - msgs = 0 - if add_up_numbers(untested) != '0': - msg_untested = add_up_numbers(untested) + ' new and untested packages' - msgs += 1 - else: - msg_untested = '' - if add_up_numbers(new) != '0': - msg_versions = add_up_numbers(new) + ' packages with new versions' - msgs += 1 - else: - msg_versions = '' - if add_up_numbers(old) != '0': - msg_old = add_up_numbers(old) + ' old packages with the same version' - msgs += 1 - else: - msg_old = '' - if len(msg_untested) != 0 - message += msg_untested - if msgs == 2: - message += ' and' - else: - message += ',' - if len(msg_versions) != 0 - message += msg_versions - if msgs == 3: - message += ' and' - else: - message += ',' - if len(msg_old) != 0 - message += msg_old + ',' - message += 'for ' + str(total) + ' or ' + \ - '+'.join([str(now_queued_here[x]) for x in SUITES]) + ' packages in total.' + message = 'Scheduled in ' + '+'.join(SUITES) + ': ' + \ + add_up_numbers(untested) + ' new and untested packages, ' + \ + add_up_numbers(new) + ' packages with new versions and ' + \ + add_up_numbers(old) + ' old packages with the same version, ' + \ + 'for ' + str(total) + ' or ' + \ + '+'.join([str(now_queued_here[x]) for x in SUITES]) + ' packages in total.' log.info('\n\n\n') log.info(message) # only notifiy irc if there were packages scheduled in any suite -- cgit v1.2.3-70-g09d2