Questions tagged [dailybuilds]

17 questions
17
votes
14 answers

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 in one step? Do you make daily builds? Do you…
Brian G Swanson
  • 1,039
  • 7
  • 17
9
votes
8 answers

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 the best way for .net project (preferably using…
Arief
  • 6,055
  • 7
  • 37
  • 41
5
votes
10 answers

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 its tests (Application, Database, Test script…
3
votes
1 answer

How do you approach database versioning when doing regular builds?

I have a web application project that works with a quite large database (over 5 GB). Data in the database is partitioned by project. Each project takes approximately 1 GB, and it is a minimal set for the application to work (we do some math…
bychkov
  • 1,503
  • 1
  • 13
  • 26
2
votes
2 answers

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.) Unfortunately, there seems to be no easy way to…
luiscubal
  • 24,773
  • 9
  • 57
  • 83
1
vote
4 answers

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 is the practice of each day doing a software build…
SOUser
  • 3,802
  • 5
  • 33
  • 63
1
vote
2 answers

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 on 32 and 64 bit. Then I know that it builds…
user180326
1
vote
1 answer

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 to build the WAR from the SVN. We know how to use…
Dejell
  • 13,947
  • 40
  • 146
  • 229
1
vote
2 answers

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. Should I be dropping all tables and stored procedures…
James
  • 119
  • 1
  • 1
  • 7
1
vote
4 answers

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 don't really want to wait 4 days looking at the…
Lily
  • 5,872
  • 19
  • 56
  • 75
0
votes
1 answer

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 total of income, the daily total of amount and the…
0
votes
1 answer

What should I add to make this /command give a role on a correct answer and only be callable once daily?

I've been working through this for about a week, and I am officially lost. Looking for answers online to how I can adjust this command for /riddle to be daily, and to assign a role upon successfully answering. Any help would be appreciated as I've…
0
votes
2 answers

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 host, but I do not know where this is located. …
codacopia
  • 2,369
  • 9
  • 39
  • 58
0
votes
1 answer

SQL - Vertica: How to generate daily rows with most previous date data

I have a base table like below: score_upd (Upd_dt,Url,Score) AS ( SELECT DATE '2019-07-26','A','x' UNION ALL SELECT DATE '2019-07-26','B','alpha' UNION ALL SELECT DATE '2019-08-01','A','y' UNION ALL SELECT DATE…
Virgil
  • 9
  • 3
0
votes
0 answers

Visual Studio 2013 cant load .wixproj with daily builds

I included wix binaries to my TFS and everything works fine for me (I have got Wix installed) but other members of my team cant build an installer because VS2013 prompt an error that .wixproj cannot be loaded and show an migration report. This is…
sceiler
  • 1,145
  • 2
  • 20
  • 35
1
2