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