Versions Compared

Key

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

...

  • The build doesn't abort at the first error, so you get more information if several projects fail to compile.
  • You can recover from minor errors
  • You can treat different errors differently, for example, by emailing different responsible peopleeach error differently. For example, build errors are emailed to developers, deployment errors emailed to operations.
  • You can record your own statistics and logs.

...

The steps are as follows:1.

  1. Initialise the two variables.

...

  1. Iterate over the contents of the file.

...

  1. Use a Try action to wrap around the Build VS.Net Solution action. If the compilation succeeds, the Catch part is not run.

...

  1. If the compilation fails, the Catch part is run: the ErrorCount variable is incremented, and the ErrorProjects variable is appended to. The build then continues on the next loop of the iterator.

...

  1. After all the projects are built, a message is shown if there was at least one error. We then use a Stop Run action to signal that the build as a whole has failed.

...

  1. If there was no error, a different message is shown. By default, builds terminate with a success code, so we don't need a Stop Run action here.

...

More ideas:·

  • Instead of showing a message, you could record the count and list of failed projects to a text file.

...

  • To gain more information about any error, you could use Log to Variable. See the Analysing Output tutorial.

...

  • You can use Try/Catch blocks at a very high level, wrapping calls to Action Lists or even other projects with the Include Project action.

...

  • Set a custom Action Log Title on the Stop Run action to explain why the build is stopping: