Creating a Crucible review for a whole project

3.4k views Asked by At

I'm looking a way to create a code review on a whole project/branch, independently if the files that has been modified and the usual revisions paradigm.

Basically, I want a review without diffs that will present the latest version of the code including files unchanged for months/years, or even not changed at all (in a given branch, so identical from the trunk from where it was copied).

I'm using SVN with the usual trunk/tags/branches standard.

Thanks,

2

There are 2 answers

0
Abhijit Sarkar On

The compiledammit URL is broken, and SO guidelines state that answers with actual code/instructions are preferred over those that just reference a link, so here's what I figured out myself:

select revisions from dir /your-project-name
where is head
and not is deleted
group by path

EyeQL latest reference guide: https://confluence.atlassian.com/fisheye/eyeql-reference-guide-298976796.html

0
mrjmh On

This is an old question, and some info in this answer is old too. There may have been some progress on Crucible from Atlassian since the following information was found.

Apparently Crucible does not directly support adding all files from a folder to a review. Instead, you must either add each individually, or add the result of a search to the review.

The latter involves creating a custom search for the files you need. This is described in a blog article I found here: http://compiledammit.com/2012/12/04/adding-all-project-files-to-a-crucible-review/