Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

If you have properties set on all three levels of Continua CI, the lowest child will take precedence. For example, if you have security permissions set at the global, project and configuration level and a user views a particular configuration, Continua CI will always use the permissions created on the configuration. 

If there is ever a conflict between multiple properties over multiple levels, Continua CI will always use the value on the lowest level. ie. Configurations take precedence over projects or global.

 

Figure 1: Demonstrates the relationship between Configurations, Projects and any settings that are set Globally. Each level of the tree can override the settings it inherits from its parent

...

Anything created globally can be accessed by all projects and configurations in Continua CI. Many elements of Continua CI can be set globally including:

  • Security permissions. By setting permissions at the global level you can create a blanket security policy for Continua CI.
  • Variables. Creating variables globally allows all projects and configurations to reference the same variable with the same value.
  • Repositories. Creating a repository at the global level allows all configurations to access the same data in the same Version Control System (VCS). This means that if anything regarding your VCS changes, then you only need to make changes to one repository.

...

  • Set user permissions that apply to all configurations in a certain project.
  • Create repositories that are only accessible to configurations in a certain project.
  • Override global variables for all configurations in a certain project.
  • Create project specific cleanup policies.

Configuration

A configuration is the defining component of Continua CI and the continuous integration process. Anything set on the configuration will take precedence over anything set globally or on the configuration's project. Configurations are individual entities that do not know about other configurations. For example, if you add a repository onto configuration A, configuration B cannot find that repository or access it. If you need multiple configurations to share repositories, variables etc. then create them either at the project or global level.

Configurations contain all the information that is needed to complete builds, including:

  • The Action Work Work Flow. This work flow is where you specify the individual actions that will run when you execute your build process. Using the Stage Editor you can define multiple build stages per configuration and set a variety of actions on these stages.
  • How a configuration is triggered. Configurations can be fired either manually through the Continua CI user interface or by creating a Trigger on the configuration. Triggers can be set to fire in the following ways:
    • Fire the configuration when a checkin is made to a source control repository.
    • Fire the configuration at a certain date or time.
    • Fire the configuration after another Configuration has completed.
  • Repositories. Source control repositories, such as Subversion and Mercurial, can be linked to configurations so that a repository's activity can be monitored and in turn, trigger builds.
  • Build Conditions. Conditions can be set on configurations to determine what will trigger a build. For example, configurations can be set to fire only if the previous configuration completed its build successfully. Alternatively, you could set a configuration to fire only if a certain file was updated in it's repository.
  • Inheriting project settings. Configurations inherit settings from its project, however these can be overridden per configuration. PermissionsVariables and Cleanup Policies are all inherited automatically from the configuration's project, however these can be set per configuration.

...