mirror of
https://github.com/2006-Scape/apollo.git
synced 2026-07-05 08:40:08 +00:00
14 lines
464 B
YAML
14 lines
464 B
YAML
language: java
|
|
jdk:
|
|
- oraclejdk8
|
|
after_success:
|
|
- ./gradlew jacocoTestReport
|
|
- bash <(curl -s https://codecov.io/bash)
|
|
- ./gradlew -Dsonar.organization=github-apollo-rsps -Dsonar.host.url=https://sonarcloud.io -Dsonar.login="$SONARCLOUD_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/ |