Currently, I am working on integrating static code analysis into our CI/CD pipeline. Specifically, I have successfully performed static code analysis for .project types, and it works flawlessly. However, I have encountered difficulties in executing the same for .library types. In this regard, I have tried two methods:
# get Project values
myProject = projects.primary
# Creates an active application
app = myProject.active_application
# build Application and run static code analysis
app.generate_code()
your help is greatly appreciated.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Currently, I am working on integrating static code analysis into our CI/CD pipeline. Specifically, I have successfully performed static code analysis for .project types, and it works flawlessly. However, I have encountered difficulties in executing the same for .library types. In this regard, I have tried two methods:
your help is greatly appreciated.