You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
397 B
20 lines
397 B
kind: pipeline
|
|
ttype: docker
|
|
name: ShakeAndCraft
|
|
|
|
trigger:
|
|
event:
|
|
- push
|
|
|
|
steps:
|
|
- name: build
|
|
image: gradle:jdk11
|
|
commands:
|
|
- gradle build
|
|
- name: sonarqube
|
|
image: sonarsource/sonar-scanner-cli:4.5
|
|
environment:
|
|
SONAR_HOST_URL: "https://your-sonarqube-url.com"
|
|
SONAR_LOGIN: ${SONAR_TOKEN}
|
|
commands:
|
|
- sonar-scanner |