This is the first time you are reading one of my blogs posts and you will be able to hear on this Monday's meeting talking briefly about the project I am working on related to change the way we do l10n repackages.
IntroductionThe way localizations are generated are by: 1) downloading an en-US binary, 2) unpack it and 3) repack it by replacing certain files from the specific locale.
The way we do repackages are in
dedicated machines and we are trying to move it over the buildbot infrastructure to make it
scalable and do them on our
generic buildslavesKey concepts for the next weeksI have done several blogs posts over the past weeks (
1,
2,
3,
4) and I will just talk what my attention is at right now:
Nightly repackagesIn this scenario we have an en-US build being generated at certain hour of the night, checking out a
specific source stamp and after it finishes we can continue by checking out the same source stamp that we are going to use to do l10n repackages. For now, I want this code into the staging configuration we have since it involves 2 schedulers (
Nighlty and DependentL10n) and it can be done with
one machine until we find the proper way to pass the source stamp from one scheduler to the next one.
Dependent repackagesWe generate dependent en-US builds continually and it can take less than 6-8 minutes to generate one of them, therefore, we do not really have enough time to keep up with that rhythm with l10n repackages (in my local machine it takes around 1-2 mins to get ready and 30 secs to repackage each locale and with 50 locales it takes a total of 25 mins) unless we had 4-6 slaves for l10n repackages and that is just thinking of linux or mac machines, the windows slaves take way longer than the previous ones.
I am thinking that we would want to do
l10n repackages every hour and the source stamp would most likely have to be different from the dependent en-US that we would download (
unless we have the en-US source stamp somewhere in the application.ini), but for now it should do
Release repackagesIn our release automation system we already do l10n repackages in the generic slaves but it still does it by using the code used in tinderbox client which is not scalable.
Changes in here will require to
check out the same tag as the en-US build does
Bootstrap configurationThere is a lot of configuration that is read in our release automation code from "
bootstrap configuration" files which contain information as which tag to checkout, where to upload the builds, which tree to report on tinderbox, etc... and this information will be needed in the process of doing l10n repackages on buildbot. The best solution is to have a factory (or a step) to parse this information and add it as a
property to the build object that gets passed from step to step on buildbot and read them to be able to use them at the proper time.
Major problems- Make sure that multiple slaves run preparatory steps. Currently, the only way I have found is to have a builder per slave under a Dependent scheduler to make sure that all slaves run these steps but this has its problems, which is that if a slave disconnects (does not fail) it will not trigger the next DependentL10n scheduler
- Pass build properties from Scheduler to Scheduler which I thought we would not need but it seems like it. I might be able to "cheat" by passing the checkout time in the application.ini file or by passing text files to the slaves with the desired information