Reputation: 111
Does anyone know how to search a Hudson server for the incremental log files that are generated from running reoccurring JUnit tests? The Hudson dash board will show the last twenty tests, but we are looking for a log file that holds a complete history of Hudson builds and the status of each build.
Upvotes: 4
Views: 4978
Reputation: 21140
The file structure on the Hudson master will look like this:
$HUDSON_HOME
|
---- jobs
|
---- [job name]
|
---- builds
Your files should be in the directory underneath that. However, if you're only keeping the last 20 builds, you're unlikely to find any files from previous builds.
If you're building on a slave, you may also find the files you're looking for under workspace/[job name] in the slave home directory.
Upvotes: 1