Everyone: We’re facing a seemingly simple technica...
# kobalt
c
Everyone: We’re facing a seemingly simple technical problem fine tuning the task dependency algorithm, which can be summarized as follows: We have both
uploadGithub
and
uploadBintray
that depend on `assemble`: if you invoke either of the
upload
tasks, then
assemble
must be invoked first. How do we compute a tree that will lead to just
assemble -> uploadBintray
to be run and not
assemble -> uploadBintray and uploadGithub
? What would be the algorithm?