Previously, I've described on this blog how to do a basic integration of NDepend with Jenkins pipeline jobs. The disadvantages of the previous post was it was essentially part of a series tailored to our build process and so not easy to view as a stand-alone article and it only covered pipelines.
As I result, I've added this complementary post to cover how to perform the same level of integration with a freestyle project. I don't normally like duplicating content on this blog but I think this version is easier to read, not to mention the post I did have planned for this week is delayed due to stubborn mathematical issues.
Prerequisites and notes
- This guide is written on the assumption you are familiar with Jenkins and configuring freestyle projects
- In order to publish reports for viewing within Jenkins, you need to have installed the HTML Publisher plugin
- The NDepend GUI has been used to create a NDepend project file for later analysis
- An existing freestyle project is available which already successfully checks out and compiles the assemblies the NDepend project will process
- NDepend must be installed on any computers used as a Jenkins build agent. I have tested versions 6 and 7 without issue
- The default Jenkins content security policy prevents embedded NDepend reports from being viewed correctly. This guide contains instructions on reconfiguring the policy
Calling NDepend
At present, there isn't a dedicated Jenkins plugin available for NDepend, so we're slightly limited in how much integration we can do.
The first step is to call NDepend. We can do this by adding a
Execute Windows batch command step to our project and then
set the Command field to call NDepend.Console.exe
passing
in the filename of our project.
NDepend.Console.exe
requires the project filename to be fully qualified. You can use the%WORKSPACE%
environment variable to get the fully qualified path of the agent workspace and append your project filename to that.
I have NDepend and other similar tools used by builds checked
into SVN so that they automatically get checked out into a build
agents workspace, so in my case I can use a relative path
pointing to NDepend.Console.exe
. Alternatively, if the
location of NDepend's binaries are part of the OS path, you can
omit the path completely.
Using absolute or relative paths in a NDepend project
By default, all paths and filenames inside the NDepend project are absolute. Jenkins builds take place in a temporary workspace, the location of which could be different for each agent. In such scenarios, the use of absolute paths could result in either absolute failure, or out-dated / unexpected results.
There are two ways we can work around this - the first is to use command line switches to override the paths in the project, and the second is to make them relative.
Overriding the absolute paths
The InDirs
and OutDir
arguments can be used to specify
override paths. InDirs
controls where all the source files to
analyse are located and OutDir
specifies where the report will
be written. Note that InDirs
allows you to specify multiple
paths if required.
Configuring NDepend to use relative paths
These instructions apply to the stand alone tool, but should also work from the Visual Studio extension.
- Open the Project Properties editor
- Select the Paths Referenced tab
- In the path list, select each path you want to make relative
- Right click and select Set as Path Relative (to the NDepend Project File Location)
- Save your changes
Personally, I don't like absolute paths being stored in documents, so I reconfigure my NDepend projects to use relative paths.
Failing the build
If the Execute Windows batch command returns non-zero, by default Jenkins will fail the build. When NDepend runs successfully and doesn't find any critical violations then it will return the expected zero. However, even if it has otherwise ran successfully, it will return non-zero in the event of critical violations.
Depending on your needs, you might want to disable this behaviour. For example, if you are using NDepend with an existing code base, then potentially you're going to have genuine violations to investigate, or false positives.
We can handle this either by marking the build as unstable or suppressing the error.
Marking the build as unstable
The Execute Windows batch command has an additional
parameter (hidden behind the Advanced button) named
ERRORLEVEL to set build unstable. By setting the value of
this field to 1
(the exit code NDepend will return when
critical violations are encountered), then the build result will
be Unstable, but it will continue executing.
Suppressing the error
As the name of the step, Execute Windows batch command, suggests, this isn't the execution of a single command. Jenkins will create a batch file based on the contents of the Command field which it then executes. Therefore, to suppress the error we simply need to exit the batch file ourselves, allowing us to supply our own exit code.
To do this, just add exit /b 0
as a new line in the
Command field and any existing error code will be ignored.
If you do this and NDepend fails to run for any other reason, you won't know about it unless you check the log files. I'd probably just go with marking the build as unstable, but you could also change the command to start checking
ERRORLEVEL
values manually and acting accordingly.
Publishing the HTML
After the NDepend analysis has completed, a HTML report will be generated. While this report doesn't offer the level of functionality that viewing the results in NDepend's GUI does, it provides a lot of useful data.
To embed this into Jenkins, we need to add a Publish HTML reports post-build step.
- Set the HTML directory to archive field to point to the
location where the NDepend report has been saved - by default
this is a folder named
NDependOut
located in the same folder as the NDepend project. - Set the Index page[s] field to be the name of the report,
which is always
NDependReport.html
- Finally, set the Report title field to be whatever you want - this will be used to label the navigation links in Jenkins
Viewing the report
As I mentioned at the start of this article, Jenkins has a security policy that restricts embedded resources. This policy cripples the NDepend report, and so you will need to loosen the restrictions slightly as per my previous post.
Once your Jenkins job has been ran and completed successfully new navigation options for viewing the reports should appear in the sidebar for the job, and the status overview providing access to the NDepend report.
Using external resource files to avoid duplication
Another NDepend default is to save all the rules in the project file. These stock rules substantially increase the size of the NDepend project and if you don't modify them it doesn't really make sense to have them duplicated over and over again.
Fortunately, NDepend allows rules to be stored in external files, and so I used the NDepend GUI to create a rules file. Now each project has had all the built in rules deleted and just references the external file. Handy!
If your projects are using absolute paths, you can just the
/RuleFiles
and /KeepProjectRuleFiles
parameters with
NDepend.Console.exe
for overriding the absolute versions if
required.
Similarly, NDepend version 7 introduces new settings for project
debt, but also provides the ability to store these in an
external file. Regretfully there doesn't seem to be override
switches available in NDepend.Console.exe
, but as I've yet to
test the technical debt features yet I don't know if this will
be an issue or not.
Update History
- 2017-02-11 - First published
- 2020-11-21 - Updated formatting
Like what you're reading? Perhaps you like to buy us a coffee?