Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

15
votes
14answers
1k views

Tools to help a small shop score higher on the “Joel Test”

Questions #1 through #4 on the Joel Test in my opinion are all about the development tools being used and the support system in place for developers: Do you use source control? Can you make a build ...
8
votes
8answers
298 views

How to do daily build for .net project from A - Z?

I'm a newbie developer who want to learn software development process better. My questions are: what is daily-build in general? what's the difference if I build my own project in VS? how do we do it ...
4
votes
6answers
5k views

How to automate the test running process using TestComplete?

We are trying to integrate tests in our daily builds using TestComplete, so far we have a machine dedicated for testing and our build script copies to this machine everything TestComplete needs for ...
3
votes
1answer
302 views

How do you approach database versioning when doing regular builds?

I have a web application project that works with quite large database (over 5GB). Data in the database is partitioned by project. Each project takes approximately 1GB, and it is a minimal set for ...
1
vote
4answers
210 views

Can one use FinalBuilder to dailybuild a fortran project (F77, F90, and above)?

Summarization: It is probably better using Scons or Foray (TCBuild) because they can solve Fortran (Fortran 90) dependencies. ======================================== A daily build or nightly build ...
1
vote
1answer
49 views

Wanted: cloud service that builds my open source project (for free?)

I have a C++ open source project that's available from a public svn repository. It would help me a lot if there is an online service that I can point to my repository and have it build it with GCC ...
1
vote
1answer
102 views

Recommended way to organize JSF big application on daily builds

We are working in a big team, building a web application in JSF, where each developer develops new task. For example: User Management, Security, System Parameters etc. We need to create a daily task ...
1
vote
4answers
411 views

How to use mock object mimicing a daily routine program?

My program has a daily routine, similar to an alarm clock event. Say, when it's 2pm(The time is the system time in my pc), do something for me. What I want to do is to speed up the testing period(I ...
1
vote
3answers
148 views

How complex should smoke tests be?

So we've been running a daily build on our current project for a lot of months at this point. The smoke tests that goes along with that daily build isn't very complex, though - we run a few nUnit ...
1
vote
2answers
271 views

Sourceforge daily builds

I currently mantain an open-source project hosted in SourceForge. My project is written in Java using ANT build scripts. (Ant has a few extensions installed, but let's ignore that for now.) ...
1
vote
2answers
99 views

Level of database rebuilding in a daily build routine

I am in the process of designing a daily build routine for my project. We are using Flex 3 and SQL Server 2005. I am unsure to what degree I should be rebuilding the database on a daily build. ...
0
votes
2answers
40 views

SQL daily sum report

I have two tables, one is income which consists of ID, income_amount and date the other is expenses which is ID, amount_spent and date. I'm trying to display a table with three columns the daily ...
0
votes
2answers
65 views

How To Set a Cron Script to Run Daily

I have a PHP file that I would like to run once per day. I know that in order to do this I need to set up a CRON job. From my understanding there should be a way to set-up the CRON job within my web ...
0
votes
2answers
428 views

run buildbot on Windows XP

I recently stumbled over buildbot and wanted to give it a try. My problem is that I have to run it under Windows because we don't use Linux on workstations or servers in my company. I've already ...
0
votes
1answer
142 views

Watchdog built into the same process as the program it controls

I run a Visual C++ console test program inside the daily build. Every now and then the test would call some function that was changed by other developers improperly, descend into an infinite loop and ...