Versions Compared

Key

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

...

setVariable- Sets a Continua CI Configuration Variable. Note that the variable name must be a Continua CI Configuration Variable.  Optionally set the skipIfNotDefined attribute to 'true' to prevent the build failing if the variable has not been defined for the configuration.

Parameters : name, value, skipIfNotDefined

Example : 

@@continua[setVariable name='allowupload' value='true' ]
@@continua[setVariable name='possiblyUnDefinedVariable' value='Hello world!' skipIfNotDefined='true' ]

 

setBuildVersion - Sets the current builds version string

Parameters :  value

Example : 

@@continua[setBuildVersion value='1.2.3' ]

setBuildStatus - Sets the current action's build status, which is shown on the build details page when a build is running

Parameters : name

Example : 

@@continua[setBuildStatus value='Copying Files...' ]

...