Fixing Build Errors Travis - SpartanRefactoring/Main GitHub Wiki
Fixing Build Errors
There are two main scenarios which can cause Travis to fail when building the project:
Compilation Errors Which cause a build failure:
This is the easy case - when someone commits changes which cause compile errors. When coming up with this failure - all that you have to do is fix the compilation errors, build the project and commit the fixes.
Dependency/Configuration Errors regarding Travis:
In this case, you will not see the errors in your project. As a matter of fact, when pulling the project, you will probably build the project successfully. In order to fix this kind of failures:
- Press on the red 'X' on Github - you will get a detailed log of the build process.
- Open as "Raw" Version
- Search for - [ERROR]
- Find the solution across the web, probably in SO
- Fix and commit
Good luck 💯