which versions are you using (SonarQube - developer)
how is SonarQube deployed: Docker
I have project where I have server part in docker and windows wpf client, both part shares some of codebase. My build process is splitted to building docker on linux host and client on windows agent. How to correctly configure sonarqube to deal with such scenario?
At the moment I’m building both part on windows stage just to make soranr scanner analysis, but that makes build process longer, I want to somehow split that to build only once in correct stage. Probably it’s monorepo scenario but I have only developer edition. Any hints how to do that correctly?
It’s not clear what the problem is with just analyzing from each of your two builds. Are you concerned about double-analysis of the shared code? If so, you could exclude it in one of the analyses.
Hi, thanks for reply, exclude can fix issue with double analyses. But remains issue with pull requests, when in PR are changes from both parts, how it will works? should I have 2 projects in sonar or one? but PR will be common so what about comments in PR during analysys?