mirror of
https://github.com/2006-Scape/apollo.git
synced 2026-07-03 00:38:21 +00:00
20 lines
501 B
YAML
20 lines
501 B
YAML
language: java
|
|
jdk:
|
|
- oraclejdk8
|
|
|
|
addons:
|
|
sonarcloud:
|
|
organization: "apollo-rsps"
|
|
|
|
after_success:
|
|
- ./gradlew jacocoTestReport
|
|
- bash <(curl -s https://codecov.io/bash)
|
|
- git fetch --unshallow
|
|
- ./gradlew -Dsonar.host.url=https://sonarcloud.io -Dsonar.login="$SONAR_TOKEN" sonarqube
|
|
before_cache:
|
|
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
|
|
- rm -fr $HOME/.gradle/caches/*/plugin-resolution/
|
|
cache:
|
|
directories:
|
|
- $HOME/.gradle/caches/
|
|
- $HOME/.gradle/wrapper/ |