Contributor(s): THL Staff
Our software is in general built and maintained using SourceForge.com. Source Forge is an array of servers and tools devoted to storing the underlying source code for software in such a way that multiple programmers can work on the code, and periodically submit their fixes, updates and enhancements. All software stored on Source Forge is "open source", which means not only can it be freely used by anyone, but the actual source code is made available to people so that it can be altered for new usages by anyone. The great power of the open source movement is that it discourages the syndrome of reinventing the wheel, and encourages collaborative development of computing resources.
However, this source code as it is revised must still be complied into a functional program that an end user can install and use. For our Java software, we use the following process to make these revisions available to the end-user immediately. To begin with, the SourceForge servers only have the source code (here is an example )
This source code must then be "compiled" to form a usable program, which is termed a "build". We use a tool called Ant to invoke the Java compiler. End users only install "Java", which does not include a Java compiler - only developers use the Java compiler. A nightly build then is when a program checks every night for new source code, and if available, compiles a new "build" so that end users can take advantage of the changes in their use of the program. SourceForge doesn't offer the resources to use their computers for nightly builds, so an external server has to be relied upon to do this. The Process
The external server (such as UVa's orion.lib.virginia.edu), does the following steps each night:
Java Web Start is a technology that allows users with Java installed on their computers to install the software over the Web. Once installed, whenever the program is launched on a computer connected to the Internet, it will check the server to see if there is a new version of the software, and if there is one, automatically install the update. When it works perfectly, it's a very convenient process.
Other Web pages can invoke the software installation or launch directly from their web pages through a simple HTML reference tag (a href) pointing to the ".jnlp" file on server where the JWS files for the software are located.
To actually set up a separate nightly build on an external server takes about four to eight hours of initial set up for someone who knows how to do it. If this is a secondary nightly build - so that one doesn't have to worry about the server stability on the primary nightly build which might be kept on the developer's server), maintenance then can be quite low (say, 2 hours per calendar year) because the secondary server can actually grab the developer's changes so long as his/her nightly build script is CVS-controlled on SourceForge.
Compiling everything, and building the API documentation for developers (see an example), and running the tests that let the developers know that nothing is broken (see an example), can take 15-90 minutes on a server like orion. There's a lot of tedious stuff to do on an external server for a first set of nightly builds, but a second set is less work because you already have a Java compiler and Ant installed on the server, the server is aware of Java Web Start, and so forth.