The Hudson CI Server has a configuration option called "Aggregate the archived artifacts". If I'm right, this option is used to share previously build artefact's across other builds/jobs. I have tried it, but it seems not working for me. How would the correct setup looks like? (PHAR packages are similar to JAR but for PHP)
My current workspace layout:
- build
- lib/php
- src/php
Job FOO:
- FOO/workspace/BAR/build/foo.phar
Job BAR:
- BAR/workspace/BAR/build/bar.phar
- BAR/workspace/BAR/lib/php/foo.phar
Hudson Job configuration for BAR:
Aggregate the archived artifacts (checked)
Job to aggregate: FOO (selected)
Artifacts to copy: **/build/*.phar
Shared directory: BAR/lib/php
Any suggestions are welcomed. Thanks!