bhantol
bhantol

Reputation: 9616

Is there a way to inspect build dir xml-data from bamboo ui

Is there a URL path that bamboo UI exposes which allows you see browser the contents of the build dir ? All I can see is the url to logs but nothing for the build dir.

Upvotes: 0

Views: 431

Answers (1)

razboy
razboy

Reputation: 1028

Not directly.

  1. You can configure the directory as a job artifact, then it will show up in the UI in the artifacts tab. In this case the URL would be http://myserver/bamboo/browse/MYBUILD/latest/artifact

  2. Alternatively, you can run ls from within your build and see the contents in the build log. If not already so, you can add a script task to your job for the purpose.

Upvotes: 1

Related Questions