|
|
|
[
Permlink
| « Hide
]
Robin Shen [23/Aug/10 10:02 AM]
Can you please send a backup of the database to [support AT pmease DOT com], and tell which configuration is in problem?
Hi,
The relevant configuration is: Effort , id is 593 Let me know if you need further info. Yossi Hi Yossi,
Please send the full backup except build and user data. It will make the task of restoring database much easier. Thanks Added remaining configuration files which are not related to users or builds
Thanks for sending the files. I restored and checked the setting, and it seems correct to me. Only two possible reasons:
1. Mis-spelled Perforce path string in build condition, please note that the path is case sensitive 2. You are expecting QuickBuild to capture changes from a repository not referenced from reachable steps. In your case, only repository "Branches code" is referenced, and the "getInvolvedRepositories()" will only return this repository. If you wants to check changes from other repositories for example 'Neo code", you will need to modify snapshot taking script and build condition like below: snapshot taking: repositories.get("Neo code").takeSnapshot(); repositories.get("Branches code").takeSnapshot(); build condition: if (repositories.get("Neo code").isChanged("//some/repository/branch/**")) return true; if (repositories.get("Branches code").isChanged("//some/repository/branch/**")) return true; return false; |