-
Since migration from CDash 3.0.3 to 3.3.0-rc3 my Dashboard shows only the Site, Build Name, Start Time while I'm expected to see also Update, Configure, Build and Test errors and warnings as it was before the migration like To submit to cdash I'm calling
I can't figure out what I'm missing. Is this a bug in CDash or should I use an other way to submit my results? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
I found the reason. In my Instead, I set |
Beta Was this translation helpful? Give feedback.
I found the reason.
In my
.env
file there is by defaultQUEUE_CONNECTION=database
that means that in thecdash
container you need to runphp artisan queue:work
as stated in the submission documentation.Instead, I set
QUEUE_CONNECTION=sync
that does the trick.