Reputation: 21
Hello im using HTML publisher plugin,
But the html files are created in runtime with timestamp for
E:\reports\html\22-08-1982
So how do we specify the "timestamp" folder in the path location
Upvotes: 2
Views: 4196
Reputation: 29669
Here is how I did it. A picture is worth a thousand words.
Gatling logs a report folder name that ends with a timestamp containing milliseconds and that folder name is logged in a file called lastRun.txt
.
Upvotes: 0
Reputation: 5976
If in your case timestamp means the build timestamp, you can:
Then you can use ${BUILD_TIMESTAMP} in HTML publisher plugin, e.g. HTML directory to archive:
reports/html/${BUILD_TIMESTAMP}
Upvotes: 2