I'm working on a continous integration cloud enviroment, using travis ci for server and sonarqube.com for static analysis. I wondering if there is a plugin/configuration for break the build process when some sonar threshold is triggered (like the build braeker plugin for the sonar server version)
Sonar build breaker for travis
176 Views Asked by mrcportillo At
2
There are 2 best solutions below
1
Eric Collins
On
looks like the sonar qube community has a plugin: https://github.com/SonarQubeCommunity/sonar-build-breaker/
Related Questions in CLOUD
- Cloud Connection with Java Window application
- CometCloud installation, and possible alternatives
- Creating a scalable database for android app | cloud hosted
- Arduino NearBus NearbusEther_v16.h: No such file or directory
- how to measure Software as a services performace
- Did google change/update related to vm ssl connections to Cloud SQL?
- Pinging a private IP from one private subnet to another private subnet
- Evernote authentication not working via evernote android sdk
- When upload Bitmap stream to Azure storage, it store zero/empty image
- How to connect Clusterpoint database to an android appliaction
- Installing CouchDB on IaaS?
- Error while creating Instance in gcloud ?. How to create an instance using Google Cloud
- In Spark, does the filter function turn the data into tuples?
- Which language to choose? #suggestions
- Dropbox for local development, Git for cloud
Related Questions in TRAVIS-CI
- SShpass not allowed with Travis CI
- Retrolambda on Travis CI
- Git tag name as version in Go via Travis-CI
- Travis-ci command "./gradlew build" exited with 1
- Travis CI for Android - Build Error: Failed to find target & Could not find dependencies
- How can I clear S3 bucket before travis deploy
- Automatic deploy of some branches with Travis CI
- tox/conda/travis-ci raises ImportError: _PyErr_ReplaceException
- Travis: CMake seems to loose (can not find) compiler version
- Travis-CI - add another task to the sbt command
- Travis secure variable in pull request
- ImportError: No module named libxml2 within Travis build
- How do I use xUnit.net with Travis-CI?
- How do you remove a Github repository for Travis CI tests?
- Tell Travis to skip a test, but continue to include it in my main test suite?
Related Questions in SONARQUBE-WEB
- SonarQube error: Component key length is longer than the maximum authorized
- SonarQube 6.0 - org.sonar.java.se.ExplodedGraphWalker$MaximumStepsReachedException: reached limit of 16000 steps for method
- How to add history widgets in SonarQube 6.2?
- show unit test success/failure count in sonarqube
- acessing the Sonarqube with http://xyz.abc.com:9000
- Blank screen after installation
- SonarQube Not Starting when connecting to MySQL
- SonarQube API - How to fetch metrics for multiple projects
- error while devlake sonarqube connection setup
- AWS EC2 Ubuntu - Sonarqube 10.2 Default Login redirects back to login screen
- SonarQube - Is it possible to delete multiple project analyses?
- Change main branch in Sonarqube without deleting branch
- SonarQube 8.9 doesn’t start, it’s blocked in loading page after login
- How to get Sonarqube Metrics (i.e. vulnerabilities: A; B; C; D; E) Ratings via the web api
- How to bulk change more than 500 issues on SonarQube 6.x?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Finally I used a maven plugin for cobertura analisys, the cobertura plugin, wich take the configuration from the pom file, and I included into CI pipeline configured in the travis configuration file (travis.yml). The script result was:
The sonar plataform was used only for static analysis but not for cobertura. Regards!