Versions Compared

Key

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

...

Each build has its own workspace: a directory that is sync'd synced between the Continua server and any agents the build runs on. A workspace is where you would generally put files that the build needs to work with - like source code and and the outputs of a build. Continua automatically puts files in the workspace but they're used internally and won't be of much use to the end user. By default, Continua puts the build's variables and the build's log in the workspace. Each stage of the build defines what gets put in the workspace using Workspace Rules and Repository Rules. By default, all repositories will have their contents copied to the Source directory and any files placed in the Output directory will be synced between stages. Using a copy of the repository means that we can run multiple builds of the same stage, at the same time, on the same agent without any conflicts. This is very useful if you set up feature branch builds. 


What can I find in a Build's Workspace?

The contents of a build's work space changes depending on where it is and what stage the build is at. When a build has been initialized, the work space contains the variables and build log and only exists on the server. Once a build hast started, the work space will have been copied to an agent and will addtionally additionally contain whatever repositories were associated with the Configuration that started the build. Lets assume you have associated two Repositories with the Configuration you're about to build and have called them MySourceRepo and MyBinariesRepo. The work space on the agent will look something like this:

Code Block
\Source
    \MySourceRepo
    \MyBinariesRepo
__variables
    <HOSTNAME>_Environment.xml
    VariablesNamesapcesVariablesNamespaces.xml
log

As the build progresses the work space will change depending on your workspace rules. By default, the workspace during the second stage would look like this:

Code Block
\Output
    files...
\Variables
    <HOSTNAME>_Environment.xml
    VariablesNamesapcesVariablesNamespaces.xml
log

...


How do I make use of files in the Workspace?

...

When designing your workflow and creating actions, you can always get the full path to your workspace by using the query syntax $Workspace$.