InterviewSolution
| 1. |
How to fix a broken build for your project in Jenkins and how to make sure project build doesn't break in Jenkins at all? |
|
Answer» The user needs to open the console output for the build and will TRY to see if any file changes that were MISSED during building the PROJECT. If there are no issues on that then a better approach would be clean and update his local WORKSPACE to replicate the problem on their local machine and will try to solve it. To make sure Jenkins build is not broken at all we need to make sure that we perform a successful clean install on the local machine with all unit tests. Then make sure that all code changes are checked in without any issues. Then synchronize with a repository to make sure that all required config and changes and any DIFFERENCES are checked into the repository. |
|