TFS 2012 meet PowerShell, Karma and BuildNumber
To my lasting regret, TFS 2012 has no direct support for PowerShell. Such a shame as PowerShell scripts can do a lot of heavy lifting in a build process. Well, here we're going to brute force TFS 2012 into running PowerShell scripts. And along the way we'll also get Karma test results publishing into TFS 2012 as an example usage. Nice huh? Let's go!
csproj
#
PowerShell via It's time to hack the csproj
(or whatever project file you have) again. We're going to add an AfterBuild
target to the end of the file. This target will be triggered after the build completes (as the name suggests):
There's 2 things happening in this target:
- A message is printed out during compilation which contains details of the various compile time variables. This is nothing more than a
console.log
statement really; it's useful for debugging and so I keep it around. You'll notice one of them is called$(BuildNumber)
; more on that later. - A command is executed; PowerShell! This invokes PowerShell with the
-NonInteractive
and-ExecutionPolicy RemoteSigned
flags. It passes a script to be executed calledAfterBuild.ps1
that lives in the root of the project directory. To that script a number of parameters are supplied; compile time variables that we may use in the script.
BuildNumber
and BuildDefinitionName
?#
Where's my So you've checked in your changes and kicked off a build on the server. You're picking over the log messages and you're thinking: "Where's my BuildNumber
?". Well, TFS 2012 does not have that set as a variable at compile time by default. This stumped me for a while but thankfully I wasn't the only person wondering... As ever, Stack Overflow had the answer. So, deep breath, it's time to hack the TFS build template file.
Checkout the DefaultTemplate.11.1.xaml
file from TFS and open it in your text editor of choice. It's find and replace time! (There are probably 2 instances that need replacement.) Perform a find for the below
And replace it with this:
Pretty long line eh? Let's try breaking that up to make it more readable: (but remember in the XAML it needs to be a one liner)
We're just adding 2 extra parameters of BuildNumber
and BuildDefinitionName
to the invocation of MSBuild. Once we've checked this back in, BuildNumber
and BuildDefinitionName
will be available on future builds. Yay! Important! You must have a build name that does not feature spaces; probably there's a way to pass spaces here but I'm not sure what it is.
AfterBuild.ps1
#
You can use your AfterBuild.ps1
script to do any number of things. In my case I'm going to use MSTest to publish some test results which have been generated by Karma into TFS:
Assuming we have a build number this script kicks off the PublishTestResults
function above. So we won't attempt to publish test results when compiling in Visual Studio on our dev machine. The script looks for MSTest.exe
in a certain location on disk (the default VS 2015 installation location in fact; it may be installed elsewhere on your build machine). MSTest is then invoked and passed a file called test-results.trx
which is is expected to live in the root of the project. All being well, the test results will be registered with the running build and will be visible when you look at test results in TFS.
Finally in FailBuildIfThereAreTestFailures
we parse the test-results.trx
file (and for this I'm totally in the debt of David Robert's helpful Gist). We write out the results to the host so it'll show up in the MSBuild logs. Also, and this is crucial, if there are any failures we fail the build by exiting PowerShell with a code of 1. We are deliberately swallowing any error that Karma raises earlier when it detects failed tests. We do this because we want to publish the failed test results to TFS before we kill the build.
test-results.trx
#
Bonus Karma: If you've read a previous post of mine you'll be aware that it's possible to get MSBuild to kick off npm build tasks. Specifically I have MSBuild kicking off an npm run build
. My package.json
looks like this:
You can see that the postbuild
hook kicks off the test
script in turn. And that test
script kicks off a single run of karma. I'm not going to go over setting up Karma at all here; there are other posts out there that cover that admirably. But I wanted to share news of the karma trx reporter. This reporter is the thing that produces our test-results.trx
file; trx being the format that TFS likes to deal with.
So now we've got a PowerShell hook into our build process (something very useful in itself) which we are using to publish Karma test results into TFS 2012. They said it couldn't be done. They were wrong. Huzzah!!!!!!!