vote up 2 vote down star
3

So, I now know what to save from nightly builds. What about when I give something to customers?

For example, I probably want to save debugging information (e.g. PDB).

What else?

flag

50% accept rate

5 Answers

vote up 2 vote down check

We use:

  • installers
  • binaries
  • pdbs
  • tag of source files
  • any other source files that might not be in svn - for example config.status
  • build log

You made me wonder if I'm missing anything important

link|flag
Why are any source files used in the build not under your VCS - SVN in your case? Every such file is a fertile source of problems later. – Jonathan Leffler Oct 26 '08 at 16:37
vote up 1 vote down

For the SDK releases we do include:

  • PDB and XML for the libraries (packaged with the latest snapshot of the samples)
  • Packaged snapshot of sources from SVN (just because we can)
  • Link to the online documentation (docs are generated from the source automatically)
link|flag
vote up 0 vote down

Trace messages don't necessarily need to be generated by default but the possibility to enable them can be very helpful.

link|flag
vote up 0 vote down
  • Compiler and library version information (it may not be part of the build log). Somebody else mentioned the whole binaries.
  • Linker map file (it can sometimes help the remote debugging of a problem).
  • Unstripped executable (if on a Unix system you strip it the executable before making it available to clients).
link|flag
vote up 0 vote down

Results and Information generated from ATPs that are run on the build (probably as part of the build process).

link|flag

Your Answer

Get an OpenID
or

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