I’m using GitHub and AWS CodeBuild as CI
Sonarscanner is included in Docker image with application
I aslo created project in SonarQube cloud pointing to this repo
dotnet sonarscanner begin /d:sonar.host.url=“https://sonarcloud.io” // orgainzation, token etc
dotnet build
dotnet sonarscanner end // token
Now my docker build fails on sonarscanner end
with
ERROR: You are running manual analysis while Automatic Analysis is enabled. Please consider disabling one or the other.
There is no option related to Automatic Analysis in the SonarQube project.
How should I stop sonarscanner crashing my builds?
Note: there is no Analysis Method menu as per Automatic analysis | SonarQube Cloud Documentation