Actions and Action Lists

Automise projects have one or more Action Lists, which in turn contain Actions to perform the build. Each action represents one step in the process, by performing a task such as copying files, creating directories, etc.

Default Action List

By default each Automise project has a Default Action List.  The project starts at the first enabled action in the Default Action List. If an error occurs then it can be handled by Try Catch actions. If not handle the build will terminate reporting the error which caused it to terminate. In a change from previous versions of Automise the developer of the build script is responsible for handling all error conditions as required. Previous versions of Automise had a global error handler Action List which would be caused if an un-handled error caused the build to stop.  

User Action Lists

In addition to the default Action List, Automise also allows you to define additional Action Lists for each project. These can be called with the Run Action List action. Action Lists are ideal for grouping sets of actions which are to be performed as a group, or called multiple times with in the script. The greatest benefit of Automise is the ability to call the command line execution with the list of Action Lists required to be performed for the current run of the script. This means Action Lists such as Clean, Install, CopyToServer, and RunTests could all be created in the one script and each picked as required for the build required at any future point in time. 

See Also

Actions Tab | Action Lists

  • No labels