drone-sonar-plugin/README.md

35 lines
826 B
Markdown
Raw Permalink Normal View History

2018-08-28 16:39:09 +00:00
# drone-sonar-plugin
The plugin of Drone CI to integrate with SonarQube (previously called Sonar), which is an open source code quality management platform.
Detail tutorials: [DOCS.md](DOCS.md).
### Build process
build go binary file:
`GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build -o drone-sonar`
build docker image
`docker build -t aosapps/drone-sonar-plugin .`
### Testing the docker image:
```commandline
docker run --rm \
-e DRONE_REPO=test \
-e PLUGIN_SOURCES=. \
-e SONAR_HOST=http://localhost:9000 \
-e SONAR_TOKEN=60878847cea1a31d817f0deee3daa7868c431433 \
aosapps/drone-sonar-plugin
```
### Pipeline example
```yaml
2019-02-17 03:10:46 +00:00
steps
- name: code-analysis
image: aosapps/drone-sonar-plugin
settings:
sonar_host:
from_secret: sonar_host
sonar_token:
from_secret: sonar_token
2018-08-28 16:39:09 +00:00
```