I would like to specify that:
:output_core
depends on :build_core
:build_extension
depends on :build_core
:output_extension
depends on both :build_extension
and :output_core
.How would I specify that last one? That in order to run the :output_extensions
task, both :build_extensions
and :output_core
must be completed?
A task dependency is a relationship that requires a particular order for tasks to be performed. It means that one preceding task relies on the other succeeding one. The predecessor task defines the start or finish date of its successor task.
How to manage project dependencies. Dependencies are often shown as Gantt charts, which can help: Track the time a project is taking to complete.
You specify them with an array:
task :output_extension => [:build_extension, :output_core]
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With