I was wondering what final steps developers take before they release their new project.
|
2
|
|
|
|
|
|
You are asking for final steps. In case your development team has been eating their own dog food the final steps should just be releasing what you have. Though there are some good pointers as to when this should be done:
|
|||
|
|
|
|
The most important thing before a new release is NOT to break anything that works now. So the most important step is:
As you should only fix bugs now, it's time for more testing:
I hope you already do unit-testing and continuous integration. If you have time between fixing bugs, you can check the documentation: Includes it the changes since the last release, are the tutorials working? And you can check, if your code includes the new version-number at all places (make a full-text-search for the old version-number). It's always fun for the users, if you release version 1.3 and the about-dialog talks about version 1.2. Never do in the last phase before the release:
These are jobs for the first time AFTER the release. |
|||
|
|
|
|
Say it's beta. |
||
|
|
|
|
I'm not a true developer since I don't actually write the code. But I assist in writing the documentation, training the customers and supporting the product after deployment. The biggest issues I, and our customers, experience is poor usability caused by lack of code testing. It doesn't need to be anything formal: just stop someone in the hallway - show them a screenshot and see if they can determine how things work, or what it's intended to do. If they can't a redesign is warranted. Better yet: don't design the code without write function specs based on conversations with end users and support staff familiar with the industry and customer needs. And don't deploy the code until it meets all apsects of that function spec. Our newest lead developer has implemented these steps and no code is released until it's undergone internal testing not just by Q&A but also by documentation and support staff. It's so much easier to fix the code before customer release and has lead to a much better/solid product. |
|||
|
|
|
|
This varies greatly depending on the kind of project you have:
|
||
|
|
|
The final steps of any of my projects is system testing. We have a system test platform here that is a complete copy of production. We then overlay any changed modules from our project into it, then completely test it, from web access, inputs, outputs, batch cycles, everything. It can be tedious and time-consuming, but it's been invaluable in what it can point out that normal unit testing does not. We try to encourage all of our developers to do string testing, but nothing beats a full production system test, where you really get to see what it's going to do when you move it to prod. |
||
|
|
|
|
Further to Greg Hewgill's post on greping for //TODO: comments. I find it handy to mark code added for debugging with: "//debug:" (eclipse style) and then grep'ing for that as well. If you use the todo / debug convention religiously, it can be a real safeguard to catch such problems. |
||
|
|
|
|
In "line of business" applications (i.e. corporate applications) there are a number of processes post development completion: Usually these are called: (names will vary, but the process is fairly standard)
Even for non-commercial software, these are steps that should be incorporated into any release process, which usually involves finishing off all the mind numbingly boring things that you've put off up to now (like documentation!) |
||
|
|
|
|
Not that I am an experienced developer, but.. :) What works relatively well for me..
Of course, all of these are based on having ongoing releases at (semi-) regular intervals - I am not brave enough to release software based solely on my own testing. :) |
||
|
|
|
|
Testing is key. Developers should do initial testing, but independant testing is vital. Developers are too close to the code to test properly. The product to be tested should be built using automated build tools (such as FinalBuilder). The developer should check all his code into source configeration control and the automated build tool should retrieve the latest code from SCC and then do the build. This ensures that what is built is actually stored in the repository. We also include all third party components in the SCC as well. We also issue a version history with each release to aid testing. |
||
|
|
|
|
Watch development rate and wait for it to drop. Wait a bit longer than the initial drop, to make sure that it's thoroughly bugfixed. This is often neglected step. And it's crucial for quality. Don't release the thing immediately. Even if you think it's ready. Wait a bit. You can also use techniques like defects pooling and defect seeding to estimate number of bugs yet to be found. And make sure developers on the team don't have any hidden private TODOs. They may think they will eventually get back to them (they're often cleanuo tasks), but in fact it rarely happens, and tends to delay the project or hamper quality. |
||
|
|
|
|
Experience has taught me to test the software in the production environment, rather than just on my dev box. |
||
|
|
|
|
Here are some of my ideas.
|
||
|
|
|
|
An approach which is worth considering: do those things which needs to be done for the software to be release not and the very end of the development cycle, but do it early instead. By doing this "just before the release" you risk a lot, because those things will usualy take a lot more effort and energy than expected. Those things are:
For larger projects I would add:
This taken into all consequences leads to key principles of agile development: deploy early, deploy frequently, deploy to someone representing the customer. |
|||
|
|
|
|
Make sure all the tests pass! You do have tests don't you? =) If there exists this one final thing, then it makes more sense to do it often (and not just before release). |
||
|
|
|
|
||
|
|
|
|
freeze development of new code in the release version and only fix bugs. |
||
|
|
|
|
Grep the source code for:
|
|||
|
|
|
Have someone other than the developers who wrote the software test it. |
||
|
