vote up 15 vote down star
23

I am just curious to see what others are doing during build-automation other than usual compile, build, run-tests, etc tasks that might be helpful and inspirational for others to consider and look into such as:

  • Generating code documentation
  • Using code-metrics to measure build quality and fail the build if established metrics are violated.
flag
7  
obligatory: xkcd.com/303 – yx May 29 at 12:06

30 Answers

vote up 29 vote down

Firing the executables off to http://virustotal.com for a virus scan against all the major anti-virus engines.

Not that we think our exes contain viruses, but sometimes you get a false positive and you don't want it to be a customer that finds it. 8-)

link|flag
5  
+1: Nice idea :-) – Jon Cage May 29 at 12:19
2  
+1 What a great idea! – Rax Olgud May 29 at 13:16
1  
I doubt that is so important... – Yacoder May 29 at 14:10
5  
It's not important.. unless you trigger a match and then it definitely is :-) – Jon Cage May 29 at 14:15
vote up 17 vote down

Ours has a twitter account so we can check its status anytime from anywhere

link|flag
And you need Twitter for this? – Adam Byrtek Jul 17 at 20:29
1  
What could be easier? – David Sykes Jul 20 at 6:49
hudson build server – geowa4 Sep 15 at 17:04
vote up 15 vote down

We have a Staples easy button that we've hooked up to fire off the build when pressed.

link|flag
Wow never heard of that before... definitely want one! :) – fretje May 29 at 14:53
you need to delay the speakers to when the build passes. – geowa4 Sep 15 at 17:05
vote up 11 vote down

Here are some things I've done, do, or plan to do:

  • Update a traffic light (using an X10 gadget) to indicate build status (green=good, yellow=building, red=whoops!).
  • Generate code documentation, then update the project wiki with the documentation.
  • Other project wiki updates such as posting the current version number, providing a download link, and so on.
  • Deploy to (and roll-back if necessary) a test server where manual testing is done. I've typically done this using VMWare so the "deploy" is really the creation of a new VM instance.
  • Automatically move tickets that are "pending build" over to QA for testing.
  • Create defect reports for failed tests, failed builds, and compiler warnings.
  • Tag the build in version control (also apply version info).
  • Schedule a review after X or more failed builds within Y days. (e.g. if three fails occur in one week, we need to meet to figure out what's going on)
  • Schedule a "pizza and beer" party for error-free weeks.
  • Play a loud "ca-ching!" sound over the PA system whenever a feature we know will lead to a new sale is completed. At my old company, our sales group loved this useless feature :).
link|flag
The traffic light idea is really good, we do it in our office as well and it gives a really good overview of the current state of the build. The addition of an UBS transmitter controlling six sets of traffic light power sockets around the office spreads the knowledge of the current status of the build. – Stefan Thyberg May 29 at 14:38
vote up 9 vote down

Create a report for any TODO/FIXME etc. that might be scattered around the code.

link|flag
More info on this please :) Great idea! – Pure.Krome May 29 at 13:04
1  
We use Hudson along with the Task Scanner Plugin: wiki.hudson-ci.org/… – Mark May 29 at 13:29
vote up 5 vote down

Deploy websites directly to test deployment servers.

link|flag
vote up 4 vote down

We apply a digital signature to all the binaries we produce. The build script does that automatically.

link|flag
vote up 3 vote down

A few things.

  1. Upload pdb's to Symbol/Source Server <- invaluable for debugging winqual crash dumps
  2. Run Tests on Installers deployed into VM's through CC.NET
  3. Create a base VM for testing through CC.NET and deploy it to all QA
  4. Take a copy of that VM image and using EggPlant perform Automated UI testing
link|flag
vote up 3 vote down

Automatically advance your issue workflow.

We wrote a custom plugin to our Bamboo CI server that gathers all the JIRA issues related to the build (determined from svn commit comments) and checks their status in JIRA.

Once the build succeeds (and deploys the app to a running server), any issue in the "waiting to be built" workflow stage, is automatically advanced to the "built and available to test" stage, which triggers an email to be sent to the tester assigned to the issue.

This means our testers receive issue notification emails not when the developer checks in the code, but when the fix is running live on a server and the tester can actually do something about it.

link|flag
That sounds awesome! – Dan F Jun 14 at 8:42
Sounds VSTS to me :P – Ruben Bartelink Jun 30 at 7:40
vote up 2 vote down

Substitutes the version number in the SVG splash screen and then renders it in Inkscape.

link|flag
vote up 2 vote down

We do a binary compatibility analysis (using reflection) against our latest public release to make sure we don't introduce binary breaking changes by accident. Whenever we are forced to a breaking change, we add the specific api to the list of "accepted breaking changes" so that the next build can skip testing that. When it's time for release we have a complete list of the APIs that break in the new release.

link|flag
+1 trying to do the same with Clirr for Java. However, it's somehow annoying as there are lots of problems with nested classes and woven aspects, rendering Clirr unusable for some modules. – mhaller Nov 3 at 10:15
vote up 2 vote down

Pull a random image off failblog.com to attach to the 'build failed' email.

link|flag
vote up 1 vote down

Various projects I've been on had large public displays of who last checked in and who broke the build. We did this with Build-o-matic and I wrote Team Piazza to display the same information for Team City builds.

link|flag
vote up 1 vote down

Managed Code:

  1. Update all AssemblyInfo files with a consistent version
  2. Run StyleCop and FxCop and check that the code is both beautiful and well behaved!

Native Code:

  1. Run depends.exe across the binaries and check that no dependencies on the debug runtime have crept in - happens all too often
  2. Use manifest.exe to dump the manifest files and check for debug dependencies - those things get everywhere!
  3. Generate python bindings for C++ code using SWIG
link|flag
vote up 1 vote down

For Java development we use:

  • JUnit complemented by Cobertura (Cobertura identifies which parts of the code are lacking test coverage)
  • Find Bugs - tool that scours the code looking for bugs and vulnerabilities
  • Hudson tool (see hudson.dev.java.net [I can't post hyperlinks yet!]) which manages the building and testing of software. It has a feature like AoP's (above) traffic light - Blue-successful build and all unit tests passed, Yellow-successful build and some unit tests failed, Red-build failed.

Hudson also

  • Manages software building via plug-ins to SVN, Continuus, etc
  • Maintains a history of all builds - allowing our Junit tests and Find Bugs results to be displayed in trend graphs
  • Sends emails to all interested parties whenever the build results in a changed state (e.g. Blue to Yellow, Red to Blue)
  • All information is presented in a simple internal web page
link|flag
I was on a project that used Hudson. I thought it was pretty cool. I think those people changing traffic lights are crazy. How will they feel if they cause an accident? – Nosredna Jun 9 at 20:52
vote up 1 vote down

Running unit-tests and code analysis tools like NDepend, Gandarme. Results are published by CC.Net

link|flag
vote up 0 vote down

We have a web app and have put performance testing and will be putting HTML/CSS validation into the test scripts.

link|flag
vote up 0 vote down

We had a build script that automatically tagged the build and SVN and deployed the application to WebSphere application server.

link|flag
vote up 0 vote down

For Java, you can also use Ivy to automatically grab any missing libraries. For example, if you use Hibernate, you may or may not want to include those libraries in your release.

link|flag
vote up 0 vote down

Reset a test db in Post build step:

  • prepare a set of files (using TemplateFile task)

Use these files to

  • delete the test db
  • take a backup of the central db
  • restore it to a new test db instance
  • run initialization sql scripts in test db (using Sql.Execute task)
  • convert (using Xml.XslTransform task) xml data files to sql files (inserts)
  • run them on the test db

After this we have a clean test db, with the correct schema, all the fixed data from the central db and then some extra test data.

Would be better if the schema and fixed data would also be in comparable data and sql files, but that's WIP. The central db isn't yet, but should be in source control.

link|flag
vote up 0 vote down

We build BizTalk 2006 projects :)

link|flag
vote up 0 vote down

How about embedding a build-time timestamp into each built image?

<ItemGroup>
  <StampFile   Include="BuildTimestamp.cs"/>
</ItemGroup>

<Target Name="BuildTimestamp" 
        Outputs="@(StampFile)">
  <Message Text="Building Timestamp..." />
  <Touch
     AlwaysCreate = "true"
        Files="@(StampFile)" />

    <WriteLinesToFile
        File="@(StampFile)"
        Lines='public static class Build { public static string Timestamp = "%(StampFile.CreatedTime)" %3B }'
        Overwrite="true"/>
</Target>

You could extend this to include Machine name, phase of the moon, etc.

link|flag
vote up 0 vote down

A few things we've done:

  1. Digitally sign all exes
  2. Archive pdbs
  3. Create installers using WIX
  4. Produce complete .iso files for software that is distributed on CD or DVD
link|flag
vote up 0 vote down

Here are some things that I usually have in Continuous Integration:

  • computing code metrics and performance statistics (captured by our framework, while tests are executed;
  • running code-quality tests that enforce certain development guidelines (i.e.: class naming, immutability, allowed references);
  • updating online documentation that is generated from the code;
  • putting install packages (WiX & ClickOnce) to the deployment server and updating manifest needed for auto-updates;
  • updating "Download" page for out open-source projects;
  • notifying all involved parties about the build and results.
link|flag
vote up 0 vote down

We use 'checkstyle' (http://checkstyle.sourceforge.net/anttask.html) to generate a report for the code that could be newly checked-in and not reviewed (formally) before the developer builds. Also, I have written a few custom tasks that do the following:

  1. Check for the DB Connection properties and tries to make an actual connection to DB (simple JDBC code) and report if any user credential issue etc. are present.
  2. Add the username and Timestamp of the last build to the code
  3. Send a notification to our Corporate IM Client (custom list) with the status of the build

There are several more tasks that are there but they are specific to the internal environment related settings.

link|flag
vote up 0 vote down

We have a Nabaztag/tag showing if any errors occur on the build-server.

link|flag
For more information about the Bunny, check out stackoverflow.com/questions/709906/… – peSHIr Jul 9 at 8:31
vote up 0 vote down

I am really surprised nobody mentioned updating config files! We update our config files b based on the environment we are building for using the build script. It saves atleast 20 mintues it would take to replace all the connectionStrings and appSettings. Other things we do are:

Update Version number
Move to Test Servers
Run code analysis
Email build status
Run some database scripts

link|flag
We (and many teams I know) use property files for different target environments. This bypasses the need for replacing anything after teh build. The buildproject already gets triggered with the correct value so the package is built already for the correct target. I guess it depends on how the build scripts are written. – Critical Skill Nov 3 at 10:31
vote up 0 vote down

I haven't read more than half of the answers here, but I hope some of these are "new":

  • Installing and upgrading an older version to check file differences from a new installation (tests our deployment upgrade configuration)
  • Deploy our core application and external system adapters to a custom Jboss (included in the project/release), start it and run SoapUI test suites to verify end-to-end functionality (also an extra test for our deployment automation)
  • Apply delta scripts to a previous database version and then make a structural comparison to a new installation so that new tables, columns etc. gets created during upgrades
  • Publish our release documentation in Confluence (we basically run our complete release script each night), as a preview of the next release from trunk
link|flag
vote up 0 vote down

We do a lot: with MSBUILD

  • Getting sources
  • Update Assembly info with time stamp and last changeset in file info and version info
  • Compile:)
  • Run Tests with Galio
  • Create test report with current time stamp and publish it on IIS
  • Create a Zip packages of all necessary binaries
  • Publish Zip packages on SVN
  • Unbind SLN file from TFS
  • Delete all bin/obj files
  • Publish source code on SVN
  • Send email, after build success or failure
  • Deploy application using NANT scripts
link|flag
vote up -3 vote down

working on one of the other pressing deadlines or catching up on email (wait that is not cool, or interesting...) ok fine, here is what I really do: http://samurai-ryan.mybrute.com/

link|flag
I am not asking what you do when the build is in progress. I am asking how you customize your build process which involves coding, writing scripts, thinking, designing, etc. – Mehmet Aras May 29 at 12:39
I also play on mybrute when waiting for a compile :) haha. that site sucks balls though :( always down/breaking. fail :( .. yet .. i .. still .. play .. it ... – Pure.Krome May 29 at 13:07

Your Answer

Get an OpenID
or

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