Notifications
Clear all

[Solved] How to Skip Compilation Errors or Modules During Project Bootstrap?

11 Posts
4 Users
1 Reactions
120 Views
0
Topic starter

I am bootstrapping a project, but there's a compilation error in the MROManagement module due to some recently added code. This issue is causing the bootstrap to fail. Is there any way to skip compilation errors or bypass specific modules during the bootstrap process?

image

 

1 Answer
1

@javamk - No, a spec is created and will include specific modules depending on requirements, and all modules that are contained within that spec must compile successfully. Bypassing the compiling of a module may cause other downstream issues and as such, a fix to the compilation error is needed to proceed.

 

As mentioned below, a common workaround is to revert the files that contain the compilation errors to a past revision that that do not have the errors. Then once the errors are resolved by the respective team, you can get the latest code and build that module successfully 

javamk Topic starter 2024-08-01 19:27:57

@jcourter Okay, so I need to wait for the MROManagement team to fix the issue before bootstrapping again, correct? Thanks

Liza 2024-08-01 19:28:54

@javamk if you know what CL caused the compilation issue, you can temporarily revert the version of the source code on your local to the CL before the breaking one. Select your workspace, then select Get Revision in the context menu on the root folder, then select Specify Revision Using and proving CL number there

jcourter 2024-08-01 19:34:42

@javamk - Agree with @Liza - Sometimes the quickest solution is to revert the files to a previous revision before the compilation errors were introduced. Then once the module team has fixed the issue, you can get the latest and build the module with the fixed code