This message was deleted.
# configuration-cache
s
This message was deleted.
c
Context: Trying to add configuration-cache support to a pre-existing plugin that wants to check didWork on another task (a jacoco report task)
The solution might be to just remove the log message around getdidwork since presumably we can just use caching/up-to-dateness checking to run or not run.
v
If not, you probably need to have a shared build service that is registered as operation completion listener. It can then record the outcome of the task you are interested in and provide it to the task where you need it.
c
I’ve had success using an operation completion listener
👌 1