I had a problem running a PHP project on a Hudson Continuous Integration server. After creating the PHP project, I checked the archived output of the assembly, and some folders were missing. I checked the SVN repository and all the folders that were not in the Hudson output were present in the SVN repository. Can anyone explain why this happened?
Detailed steps
- I chose
free style build - Configurable SCM. I use SVN as the source code repository.
- At the build stage, I did not call
ant or phing - Proven and configured archive artifact option for PHP
When I try to call ant or phing , it returns an error message stating that there is no build.xml file in the workspace.
I want to know about the relationship between the build.xml file and the build of a PHP project in Hudson?
source share