Hi,
We were using SonarCloud integrated with Travis CI, for a python project, long time ago. Whenever a pull request is opened in GitHub, Travis is launched and when the process is finished, then it launches the SonarCloud analysis and then the PR was decorated with the results of the analysis.
The way to launch SonarCloud is using this lines in travis.yml
:
after_success:
- export SONAR_SCANNER_OPTS="-Xmx2048m"
- sonar-scanner -Dsonar.projectVersion=$TRAVIS_COMMIT
Since 5th may, this is not happening anymore. The SonarCloud analysis is executed and the results can be seen inside Travis logs, but the PR page in GitHub is not decorated.
I have read all your documentation about Travis integration, but anything I tried worked.
We have created a new token and reinstalled de app of SonarCloud for GitHub, and it has been useless.
The only thing we think that has changed since then is that the name of the organization in GitHub has change by that date.
We would appreciate any help.
Thank you very much.