You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Depuis le passage sous Xcode 7, je rencontre un problème avec le fichier de couverture de code qui contient des chiffres énormes qui font planter l'envoi des données vers SONAR.
-n Running SonarQube using SonarQube Runner
-n .
-n .
-n .
ERROR: Error during Sonar runner execution
ERROR: Unable to execute Sonar
ERROR: Caused by: For input string: "9223372036854775808"
ERROR:
ERROR: To see the full stack trace of the errors, re-run SonarQube Runner with the -e switch.
ERROR: Re-run SonarQube Runner using the -X switch to enable full debug logging.
J'ai mis en place un HACK dans le fichier run-sonar.sh à la fin du bloque concernant la couverture de code pour remplacer tous les hits="n" ( où n est != 0), par hits="1".
Depuis le passage sous Xcode 7, je rencontre un problème avec le fichier de couverture de code qui contient des chiffres énormes qui font planter l'envoi des données vers SONAR.
-n Running SonarQube using SonarQube Runner
-n .
-n .
-n .
ERROR: Error during Sonar runner execution
ERROR: Unable to execute Sonar
ERROR: Caused by: For input string: "9223372036854775808"
ERROR:
ERROR: To see the full stack trace of the errors, re-run SonarQube Runner with the -e switch.
ERROR: Re-run SonarQube Runner using the -X switch to enable full debug logging.
J'ai mis en place un HACK dans le fichier run-sonar.sh à la fin du bloque concernant la couverture de code pour remplacer tous les hits="n" ( où n est != 0), par hits="1".
find "./sonar-reports" -name "coverage-*.xml" -type f -exec perl -p -i -e "s/hits="[1-9]\d"/hits="1"/g" {} ;
The text was updated successfully, but these errors were encountered: