Jazz Forum Welcome to the Jazz Community Forum Connect and collaborate with IBM Engineering experts and users

Retrieve change set based on given IBuildResult object

 How do I retrieve the change set (diff from previous build result) from a given build result object? From the RTC web page, There is a link "Show Change":


when click on it, I can have the corresponding change set diffed from the previous build result:

That way, I can analyze the change set to narrow down the problem space while the test cases broken.

Many thanks!

0 votes


Accepted answer

Permanent link
 I put the working code under below link:
Ralph Schoon selected this answer as the correct answer

0 votes

Comments

Thanks for sharing!


One other answer

Permanent link
I assume you have to get the snapshot from the build result and / or some other data. The additional data is stored in a build result using IBuildResultContribution(s). To access them see the code below as an example.

        ITeamBuildClient buildClient = (ITeamBuildClient) fTeamRepository.getClientLibrary(ITeamBuildClient.class);
        IBuildResultContribution[] logs = buildClient.getBuildResultContributions(buildResult,
                new String[]{IBuildResultContribution.LOG_EXTENDED_CONTRIBUTION_ID}, null);

1 vote

Comments
Hi Ralph,
Thanks for your quick and helpful response!

 I found a link:


which show some code snippet and it seems to be able to satisfy my request. I am still working on to combine the code snippet into a workable complete code...


Your answer

Register or log in to post your answer.

Dashboards and work items are no longer publicly available, so some links may be invalid. We now provide similar information through other means. Learn more here.

Search context
Follow this question

By Email: 

Once you sign in you will be able to subscribe for any updates here.

By RSS:

Answers
Answers and Comments
Question details
× 10,940

Question asked: Mar 31 '15, 2:55 a.m.

Question was seen: 3,342 times

Last updated: Apr 07 '15, 2:33 a.m.

Confirmation Cancel Confirm