up vote 5 down vote favorite
share [g+] share [fb]

My company has grown to thirty-five coders, in five separate groups. I manage one of the groups. The bulk of the code is C#, but it must build and run on both .NET and Mono. We use C/C++ for drivers and real-time control, IronPython for scripting.

We have a simple automated build system that is triggered by check-ins; it does a big build of everything and gripes when compilation or unit tests fail. This is all fine and good, if primitive.

There is a strong desire among many of the engineers to hire a build engineer, to manage all the Makefiles and whatnot, to do releases to verification, to poke at the unit tests, etc. As headcount is tight, my boss (VP SW) is reluctant. I am trying to muster arguments and specifics for my cause, to create a bulletproof argument.

I recall at Apple, we had like 24 build engineers for 600 developers (25:1). At another company with 150 engineers, we had 6 build people (also 25:1). It seems like a decent metric.

If you would, please relate your opinions on the merits and and value-add of hiring a build engineer, along with any supporting evidence (e.g. what's it like where you are).

Thanks!

link|improve this question
1  
What the hell do 24 build engineers do all day? – cletus Mar 14 '09 at 4:41
"Sorry I'm the red widgets build guy. You need to speak to the blue widgets build guy."? – cletus Mar 14 '09 at 4:52
"We were supporting three toolkits, three window systems, three hardware architectures, two user interfaces and two operating system versions. The simple statement, "there's a bug in the scrollbar code" could have indicated any of 108 different configurations. I had had enough." – TofuBeer Mar 14 '09 at 4:54
IIRC, there was basically one group of eight per product line (desktops, laptops, consumer). They were all busy, I assure you. :) – Mark Maxham Mar 14 '09 at 4:56
Build engineers are some of the hardest working people I know. Mainly because they get overworked and under appreciated. – RobS Mar 14 '09 at 5:44
show 2 more comments
feedback

5 Answers

up vote 16 down vote accepted

Disclaimer: I am presently employed as a build engineer.

I would suggest that once you have 3 or more individual groups working on multiple projects you ought to have one person responsible for your build systems and build scripts across all projects/groups. There are two reasons for this:

1) This person becomes a resource any developer can use to delegate work to or get assistance with when dealing with things encountered at compile time, thus relieving the developers of futzing with the build system/scripts so they can focus on their own applications.

2) Someone who can make sure the builds across all projects adhere to good standards and practices. Trust me, it is not fun when every single group defines different conventions for their source layout and build system/scripts and it becomes a huge pain for a developer in one group to look at the projects of, let alone transition to, another group if there is a large difference between how groups do things with their source and builds. This person essentially gives you governance across all groups.

link|improve this answer
wish I could bump you up 9 more times! – TofuBeer Mar 14 '09 at 4:55
+1 for 'futzing', and also the good info – Jason Mar 14 '09 at 5:01
feedback

If your present product developers have a backlog of enhancement requests and bug fixes, then every hour your present product developers devote to managing the build system is an hour's delay in clearing the backlog. A new-hire build engineer can usually learn your existing build system and its quirks in less calendar time than a new-hire product developer can learn your existing products sufficiently to be able to begin reducing your backlog. New-hires add a communication burden on existing team members while they are learning the system, see Mythical Man-Month, but it has been my experience that it takes much less time for a product developer to explain how s/he builds a component than to explain a component's 8,000 line legacy doIt() routine written by a committee of no-longer-present ancestors.

Context-shifts are harmful to productivity. If you have many versions of many products including various one-offs for special customers, a build specialist will reduce the interruption frequency for your product developers.

How much more productive are your most experienced developers over a new hire? Can they fix in three minutes a bug which would require a new hire a week? If so, you really want them doing that, not wrangling the build.

link|improve this answer
1  
I agree that context shifts harm productivity. However in my experience having a dedicated build engineer can be a bad thing. Developers are content being ignorant of the build process and build engineers can easily become a point of failure. – Tom Duckering May 10 '11 at 8:11
feedback

I'd be curious what technology you're using both in language and in build software. Also, the complexity of your software is going to affect the need for a dedicated build engineer.

If you're writing c/c++/objective-c and using make, well, I've never had much luck with make, so good luck to you.

If you're writing in Java or .Net, that's a different story. In the Java community, Maven is the best build tool I've come across. And in the .Net world, it's hard to beat TFS+MSBuild with a well defined project layout. In my experience, once you get these tools setup and everything is well defined you really don't need anyone to watch them.

If you're using Python/Ruby/Perl, then...what build process? I'm kidding. Well, kinda.

For me, it's all about the process, really. Having everything well defined as to how to layout projects and build scripts makes everything much easier. If you have all that figured out or if you have someone who knows how to figure it out, then I don't think a build engineer is much of a benefit. However, if you need help figuring those things out, that's a different story.

link|improve this answer
Edited to include tech. – Mark Maxham Mar 14 '09 at 4:59
feedback

In my experience, build engineering is the redheaded stepchild of software development. Very necessary once you get to a certain size, yet near-impossible to make the case to management for an entire headcount that isn't writing code.

My suggestion: see if you can get your boss to compromise. Unless you are experiencing huge headaches with build management then you may not really need one person 100% dedicated to build management. Hire a junior dev that really wants to get into fulltime coding and sic him/her on the build management. Great experience for the junior dev, 70%-80% dedicated resource to build management for you. Internships might also be an option if you have a university nearby.

link|improve this answer
1  
You had me until you said hire a junior dev or intern. Are you serious? This person is going to know nothing about builds, have no one mentoring him and is just biding his time until he get's to do something "better". How could that not end well? – Christopher Painter Apr 17 '11 at 23:29
I certainly didn't mean "throw a completely unsupervised n00b at the problem and hope fot the best." Clearly a junior dev or intern would require some training before being turned loose on the entire build management process. – Dave Swersky Apr 18 '11 at 2:03
Who's going to do it? For the OP's situation, he says he has 35 developers. I remember the first time I got into the Build/Install space some 16 years ago. Someone handed me a copy of InstallShield and I asked who the expert was? My answer was "You are". Now I made it because I'm a special kind of crazy but I've seen that scenario play out countless times and it simply doesn't end well. – Christopher Painter Apr 18 '11 at 3:15
Agree that "build" work is great intro to a team and it's codebase. However, I think the suggestion that it's a junior dev's role is reinforcing the "redheaded stepchild" status. Takes a lot to maintain a clean and well structured build system. In general, build and deployment engineering need more attention in my experience. – Tom Duckering May 10 '11 at 8:18
feedback

whaley said it all.

I just would like to add that in a small team, a release engineer could for example also do the installations (think nightly installation, one per customer, demo...) and keep the installation procedures and guide sane and up-to-date.

It's a lot more work than managers think it is,

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.