Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Standard project tasks are: compile, package, test, integration, ... TODO

Code Block

                                                +--- package <--- upload  <--- release
                                                |
resources <--- compile <--- test <--- build <---+
                                                |
                                                +--- default

Concurrency Support

Buildr/Rake support concurrent task execution to shorten build time. Rake's internal data structures are thread-safe with respect to concurrent task execution. However, if data is shared between potentially concurrent tasks, it's the tasks' responsibility to prevent race conditions and data corruption.

...