Skip to main content

Popularity Report

Total Popularity Score: 0

Loading...
Loading...
Loading...
Loading...
Loading...
Loading...

Rank

Groups (1)

  • coders

    Coders

    130 members,1030 bookmarks

    A group for and about coders and programming -- theory, practice, and research.

Bookmark History

Saved by 16 people (6 private), first by anonymouse user on 2006-07-31


Public Comment

on 2006-07-31 by ziller

Continuous Integration is a software development practice where members of a team integrate their work frequently, usually each person integrates at least daily - leading to multiple integrations per day.

Public Sticky notes

Probably the most crucial step is to start working on setting up a staged build

Highlighted by mk1matt

Continuous Integration is a software development practice where members of a team integrate their work frequently, usually each person integrates at least daily - leading to multiple integrations per day. Each integration is verified by an automated build (including test) to detect integration errors as quickly as possible. Many teams find that this approach leads to significantly reduced integration problems and allows a team to develop cohesive software more rapidly.

Highlighted by pfongkye

Continuous Integration is a software development practice where members of a team integrate their work frequently, usually each person integrates at least daily - leading to multiple integrations per day. Each integration is verified by an automated build (including test) to detect integration errors as quickly as possible. Many teams find that this approach leads to significantly reduced integration problems and allows a team to develop cohesive software more rapidly. This article is a quick overview of Continuous Integration summarizing the technique and its current usage.

Highlighted by anakha

a common mistake I see is that they don't put everything in the repository

Highlighted by yifeidong

test scripts, properties files, database schema, install scripts, and third party libraries

Highlighted by yifeidong