In my bamboo job I have a powershell 'script' task ('Run as Powershell script' checked) with following content:
@" <?xml version="1.0" encoding="utf-8"?> <connectionStrings> <add name="CargoContext" connectionString="" providerName="System.Data.SqlClient" ></add> </connectionStrings> "@ > ConnectionStrings.config echo everything in order!
Ever since I added this task all builds fail, even though all tests are run and pass. I checked build logs and found following message (in red, probably meaning that this fails the build):
Unable to find executable at &('C:\Program Files\Bamboo\temp\CARGO-GATE2-JOB1-3-ScriptBuildTask-5984229618597029809.ps1'). Will try to run it anyway.
@Marcin Gardias was right, the red warning didn't fail the build. I found following line in logs:
simple 18-kwi-2014 16:51:51 Starting task 'NUnit Parser' of type 'com.atlassian.bamboo.plugin.dotnet:nunit' simple 18-kwi-2014 16:51:51 Parsing test results... simple 18-kwi-2014 16:51:51 Failing task since test cases were expected but none were found. simple 18-kwi-2014 16:51:51 Finished task 'NUnit Parser'
Nunit results parser couldn't find any test results (filename changed) and it failed.
I still don't know why red line didn't fail the build and line that actually failed it was indistinguishable from all the log noise.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
That 'unable to find executable' is only a warning that program you try to run is neither absolute path nor a path relative to working dir. We put this warning because in some cases it might be relevant (as in you expect executable to be on PATH but it's not)
Execution continues because the script didn't fail. It must be sth else. Please show the complete build log.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It has also reported that for me too but my build doesn't fail. What version of Bamboo are you running?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.